Revoke an active PDS delegation. Only accessible to administrators.
Input
Encoding
application/jsondelegationId
string
Required
ID of the delegation to revoke
Output
Encoding
application/jsonSchema#delegationResult
Errors
AuthenticationRequired
Unauthorized
NotFound
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": [
"delegationId"
],
"properties": {
"delegationId": {
"type": "string",
"description": "ID of the delegation to revoke"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "Unauthorized"
},
{
"name": "NotFound"
}
],
"output": {
"schema": {
"ref": "#delegationResult",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Revoke an active PDS delegation. Only accessible to administrators."
}