List active PDS delegations. Only accessible by administrators.
Parameters
Output
application/jsoncursor
string
Optional
Cursor for next page
delegations
array
Required
List of delegations
total
integer
Required
Total number of delegations
Errors
AuthenticationRequired
Unauthorized
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": "Unauthorized"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"delegations",
"total"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of delegations"
},
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"delegations": {
"type": "array",
"items": {
"ref": "#delegation",
"type": "ref"
},
"description": "List of delegations"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
}
}
},
"description": "List active PDS delegations. Only accessible by administrators."
}