Resolves one Community report by removing its post or dismissing the report. Requires authenticated moderator authorization.
Input
Encoding
application/jsonaction
string
Required
No description available.
note
string
Optional
No description available.
maxLength: 2000 bytesreport
string
Required
No description available.
maxLength: 128 bytesOutput
Encoding
application/jsonreport
refcom.getorbyt.community.defs#reportView
Required
No description available.
Errors
AuthenticationRequired
ReportNotFound
InsufficientRole
InvalidState
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": [
"report",
"action"
],
"properties": {
"note": {
"type": "string",
"maxLength": 2000
},
"action": {
"type": "string",
"knownValues": [
"remove",
"dismiss"
]
},
"report": {
"type": "string",
"maxLength": 128
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "ReportNotFound"
},
{
"name": "InsufficientRole"
},
{
"name": "InvalidState"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"report"
],
"properties": {
"report": {
"ref": "com.getorbyt.community.defs#reportView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Resolves one Community report by removing its post or dismissing the report. Requires authenticated moderator authorization."
}