Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.server.deleteAccount

atproto-lexicons.bsky.social

Documentation

main procedure

Delete an actor's account with a token and password. Can only be called after requesting a deletion token. Requires auth.

Input

Encodingapplication/json
did 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.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
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."
}

Lexicon Garden

@