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

com.atproto.server.checkAccountStatus

atproto-lexicons.bsky.social

Documentation

main query

Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself.

Output

Encodingapplication/json
activated boolean Required

No description provided.

expectedBlobs integer Required

No description provided.

importedBlobs integer Required

No description provided.

indexedRecords integer Required

No description provided.

privateStateValues integer Required

No description provided.

repoBlocks integer Required

No description provided.

repoCommit stringcid Required

A content identifier (CID) referencing immutable data.

repoRev string Required

No description provided.

validDid boolean Required

No description provided.

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": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "activated",
        "validDid",
        "repoCommit",
        "repoRev",
        "repoBlocks",
        "indexedRecords",
        "privateStateValues",
        "expectedBlobs",
        "importedBlobs"
      ],
      "properties": {
        "repoRev": {
          "type": "string"
        },
        "validDid": {
          "type": "boolean"
        },
        "activated": {
          "type": "boolean"
        },
        "repoBlocks": {
          "type": "integer"
        },
        "repoCommit": {
          "type": "string",
          "format": "cid"
        },
        "expectedBlobs": {
          "type": "integer"
        },
        "importedBlobs": {
          "type": "integer"
        },
        "indexedRecords": {
          "type": "integer"
        },
        "privateStateValues": {
          "type": "integer"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself."
}

Lexicon Garden

@