List scheduled moderation actions with optional filtering
Input
Encoding
application/jsoncursor
string
Optional
Cursor for pagination
endsBefore
stringdatetime
Optional
Filter actions scheduled to execute before this time
limit
integer
Optional
Maximum number of results to return
minimum: 1maximum: 100startsAfter
stringdatetime
Optional
Filter actions scheduled to execute after this time
statuses
array
Required
Filter actions by status
minLength: 1 itemssubjects
array
Optional
Filter actions for specific DID subjects
maxLength: 100 itemsOutput
Encoding
application/jsonactions
array
Required
No description available.
cursor
string
Optional
Cursor for next page of results
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": [
"statuses"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Cursor for pagination"
},
"statuses": {
"type": "array",
"items": {
"type": "string",
"knownValues": [
"pending",
"executed",
"cancelled",
"failed"
]
},
"minLength": 1,
"description": "Filter actions by status"
},
"subjects": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 100,
"description": "Filter actions for specific DID subjects"
},
"endsBefore": {
"type": "string",
"format": "datetime",
"description": "Filter actions scheduled to execute before this time"
},
"startsAfter": {
"type": "string",
"format": "datetime",
"description": "Filter actions scheduled to execute after this time"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"actions"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page of results"
},
"actions": {
"type": "array",
"items": {
"ref": "tools.ozone.moderation.defs#scheduledActionView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"description": "List scheduled moderation actions with optional filtering"
}