Lists append-only Community audit events visible to the authenticated moderator or administrator.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
events
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": [
"events"
],
"properties": {
"cursor": {
"type": "string"
},
"events": {
"type": "array",
"items": {
"ref": "com.getorbyt.community.defs#auditEvent",
"type": "ref"
},
"maxLength": 50
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"community"
],
"properties": {
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"community": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Lists append-only Community audit events visible to the authenticated moderator or administrator."
}