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
application/jsonnote
string
Optional
Optional free-text note explaining the dismissal.
maxLength: 1000 bytesreportId
integer
Required
No description available.
minimum: 1Output
application/jsonauditEntryId
integer
Required
No description available.
status
refapp.tempomusic.staff.defs#reportStatus
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.
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."
}