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
Encoding
application/jsonactivated
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.
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."
}