Cancel all pending scheduled moderation actions for specified subjects
Input
application/jsoncomment
string
Optional
Optional comment describing the reason for cancellation
subjects
array
Required
Array of DID subjects to cancel scheduled actions for
maxLength: 100 itemsOutput
application/jsonTry 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": [
"subjects"
],
"properties": {
"comment": {
"type": "string",
"description": "Optional comment describing the reason for cancellation"
},
"subjects": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 100,
"description": "Array of DID subjects to cancel scheduled actions for"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "#cancellationResults",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Cancel all pending scheduled moderation actions for specified subjects"
}