Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.
Parameters
Output
Encoding
application/jsonblobs
array
Required
No description provided.
cursor
string
Optional
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": [
"blobs"
],
"properties": {
"blobs": {
"type": "array",
"items": {
"ref": "#recordBlob",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 500,
"maximum": 1000,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow."
}