Revoke admin access from a DID. Config-provided admins cannot be revoked here, and an admin cannot revoke their own access.
Input
Encoding
application/jsondid
stringdid
Required
The DID to revoke admin access from.
Output
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Errors
NotFound
The DID does not hold admin access. 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": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID to revoke admin access from."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound",
"description": "The DID does not hold admin access."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"description": "Revoke admin access from a DID. Config-provided admins cannot be revoked here, and an admin cannot revoke their own access."
}