Lists private reports and appeals for one Community. Requires authenticated moderator authorization.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
items
array
Required
No description available.
Errors
AuthenticationRequired
CommunityNotFound
InsufficientRole
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "CommunityNotFound"
},
{
"name": "InsufficientRole"
},
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"refs": [
"com.getorbyt.community.defs#reportView",
"com.getorbyt.community.defs#appealView"
],
"type": "union"
},
"maxLength": 50
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"kind": {
"type": "string",
"knownValues": [
"report",
"appeal"
]
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"knownValues": [
"open",
"resolved"
]
},
"community": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Lists private reports and appeals for one Community. Requires authenticated moderator authorization."
}