Delete an actor's account with a token and password. Can only be called after requesting a deletion token. Requires auth.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
password
string
Required
No description provided.
token
string
Required
No description provided.
Errors
ExpiredToken
InvalidToken
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"did",
"password",
"token"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"token": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "ExpiredToken"
},
{
"name": "InvalidToken"
}
],
"description": "Delete an actor's account with a token and password. Can only be called after requesting a deletion token. Requires auth."
}