Get admin audit log entries
Parameters
Output
Encoding
application/jsonentries
array
Required
Audit log entries
total
integer
Required
Total entries matching the query
Errors
AuthenticationRequired
AdminRequired
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": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"entries",
"total"
],
"properties": {
"total": {
"type": "integer",
"description": "Total entries matching the query"
},
"entries": {
"type": "array",
"items": {
"ref": "#auditEntry",
"type": "ref"
},
"description": "Audit log entries"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of entries"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"actorDid": {
"type": "string",
"format": "did",
"description": "Filter by actor DID"
}
}
},
"description": "Get admin audit log entries"
}