Delete an account the caller minted, ahead of its expiry. The identity is retired as it would have been on expiry.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
Output
Encoding
application/jsondeleted
boolean
Required
No description available.
did
stringdid
Required
A decentralized identifier (DID).
Errors
AccountNotFound
No live account with that DID was minted by the caller. 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"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AccountNotFound",
"description": "No live account with that DID was minted by the caller."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"did",
"deleted"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"deleted": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Delete an account the caller minted, ahead of its expiry. The identity is retired as it would have been on expiry."
}