Fetch a single report by id, including its subject snapshot as captured at intake. Requires the caller to be an active moderator.
Parameters
Output
Encoding
application/jsonreport
refapp.tempomusic.staff.defs#reportView
Required
No description available.
Errors
Forbidden
Caller is not an active moderator. NotFound
No report exists with the given id. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "Forbidden",
"description": "Caller is not an active moderator."
},
{
"name": "NotFound",
"description": "No report exists with the given id."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"report"
],
"properties": {
"report": {
"ref": "app.tempomusic.staff.defs#reportView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
"minimum": 1
}
}
},
"description": "Fetch a single report by id, including its subject snapshot as captured at intake. Requires the caller to be an active moderator."
}