io.atcr.hold.deleteUserData

atcr.io

Documentation

Delete all user data from this hold (GDPR compliance). Deletes crew record (if not captain), layer records, and stats records. Does NOT delete actual blob data from S3 - only PDS records.

main procedure

Delete all user data from this hold (GDPR compliance). Deletes crew record (if not captain), layer records, and stats records. Does NOT delete actual blob data from S3 - only PDS records.

Input

Encodingapplication/json

Output

Encodingapplication/json
crewDeleted boolean Required

Whether the user's crew record was deleted (false if user is captain)

layersDeleted integer Required

Number of layer records deleted

statsDeleted integer Required

Number of stats records deleted

success boolean Required

Whether the deletion completed successfully

Errors

AuthRequired
DeletionFailed
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)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "properties": {}
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthRequired"
    },
    {
      "name": "DeletionFailed"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "success",
        "crewDeleted",
        "layersDeleted",
        "statsDeleted"
      ],
      "properties": {
        "success": {
          "type": "boolean",
          "description": "Whether the deletion completed successfully"
        },
        "crewDeleted": {
          "type": "boolean",
          "description": "Whether the user's crew record was deleted (false if user is captain)"
        },
        "statsDeleted": {
          "type": "integer",
          "description": "Number of stats records deleted"
        },
        "layersDeleted": {
          "type": "integer",
          "description": "Number of layer records deleted"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Delete all user data from this hold (GDPR compliance). Deletes crew record (if not captain), layer records, and stats records. Does NOT delete actual blob data from S3 - only PDS records."
}

Lexicon Garden

@