com.atproto.server.checkAccountStatus

atproto-lexicons.bsky.social

Documentation

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.

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 available.

expectedBlobs integer Required

No description available.

importedBlobs integer Required

No description available.

indexedRecords integer Required

No description available.

privateStateValues integer Required

No description available.

repoBlocks integer Required

No description available.

repoCommit stringcid Required

A content identifier (CID) referencing immutable data.

repoRev string Required

No description available.

validDid boolean Required

No description available.

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

@