app.tempomusic.staff.dismissReport

lexicons.tempomusic.fan

Documentation

Close a report without acting on the subject. Valid from `open` (fast-path obvious junk) and from `underReview`. Writes a single `reportDismissed` audit row. Fast-path dismissal directly from `open` does NOT emit a `reportTriaged` audit row first — only the dismissal entry is written.

main procedure

Close a report without acting on the subject. Valid from `open` (fast-path obvious junk) and from `underReview`. Writes a single `reportDismissed` audit row. Fast-path dismissal directly from `open` does NOT emit a `reportTriaged` audit row first — only the dismissal entry is written.

Input

Encodingapplication/json
note string Optional

Optional free-text note explaining the dismissal.

maxLength: 1000 bytes
reportId integer Required

No description available.

minimum: 1

Output

Encodingapplication/json
auditEntryId integer Required

No description available.

Errors

Forbidden Caller is not an active moderator.
NotFound
AlreadyResolved The report is already in a terminal state (`actioned` or `dismissed`).
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "reportId"
      ],
      "properties": {
        "note": {
          "type": "string",
          "maxLength": 1000,
          "description": "Optional free-text note explaining the dismissal."
        },
        "reportId": {
          "type": "integer",
          "minimum": 1
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "Forbidden",
      "description": "Caller is not an active moderator."
    },
    {
      "name": "NotFound"
    },
    {
      "name": "AlreadyResolved",
      "description": "The report is already in a terminal state (`actioned` or `dismissed`)."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "status",
        "auditEntryId"
      ],
      "properties": {
        "status": {
          "ref": "app.tempomusic.staff.defs#reportStatus",
          "type": "ref"
        },
        "auditEntryId": {
          "type": "integer",
          "minimum": 1
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Close a report without acting on the subject. Valid from `open` (fast-path obvious junk) and from `underReview`. Writes a single `reportDismissed` audit row. Fast-path dismissal directly from `open` does NOT emit a `reportTriaged` audit row first — only the dismissal entry is written."
}

Lexicon Garden

@