Refresh a stale record from PDS
Input
Encoding
application/jsonuri
stringat-uri
Required
AT-URI of the record to refresh
Output
Encoding
application/jsonerror
string
Optional
Error message if refresh failed
newCid
stringcid
Optional
New CID after refresh
refreshed
boolean
Required
Whether refresh succeeded
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Errors
NotFound
AuthenticationRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the record to refresh"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "AuthenticationRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"refreshed"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"error": {
"type": "string",
"description": "Error message if refresh failed"
},
"newCid": {
"type": "string",
"format": "cid",
"description": "New CID after refresh"
},
"refreshed": {
"type": "boolean",
"description": "Whether refresh succeeded"
}
}
},
"encoding": "application/json"
},
"description": "Refresh a stale record from PDS"
}