social.colibri.actor.deleteAccount

colibri.social

Documentation

Deletes everything the AppView holds for the authenticated user.

main procedure

Deletes everything the AppView holds for the authenticated user.

Output

Encodingapplication/json

Errors

AuthRequired Missing, malformed, or unverifiable service auth.
InvalidState The request is not valid for the current state.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
View raw schema
{
  "type": "procedure",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "Missing, malformed, or unverifiable service auth."
    },
    {
      "name": "InvalidState",
      "description": "The request is not valid for the current state."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "deleted"
      ],
      "properties": {
        "deleted": {
          "ref": "lex:social.colibri.actor.deleteAccount#deletedCounts",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Deletes everything the AppView holds for the authenticated user."
}
deletedCounts object

What the purge removed, per storage area.

Properties

communityRecords integer Required

No description available.

dismissedApplications integer Required

No description available.

invitations integer Required

No description available.

notifications integer Required

No description available.

pushSubscriptions integer Required

No description available.

recordData integer Required

No description available.

userState integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "recordData",
    "communityRecords",
    "notifications",
    "pushSubscriptions",
    "userState",
    "invitations",
    "dismissedApplications"
  ],
  "properties": {
    "userState": {
      "type": "integer"
    },
    "recordData": {
      "type": "integer"
    },
    "invitations": {
      "type": "integer"
    },
    "notifications": {
      "type": "integer"
    },
    "communityRecords": {
      "type": "integer"
    },
    "pushSubscriptions": {
      "type": "integer"
    },
    "dismissedApplications": {
      "type": "integer"
    }
  },
  "description": "What the purge removed, per storage area."
}

Lexicon Garden

@