Delete a record from a space. Callers can delete their own records; the space owner can delete any record (via a separate admin path).
Input
Encoding
application/jsoncollection
stringnsid
Required
A namespaced identifier (e.g., app.bsky.feed.post).
rkey
string
Required
No description available.
spaceUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsonok
boolean
Required
No description available.
Errors
NotFound
Forbidden
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": [
"spaceUri",
"collection",
"rkey"
],
"properties": {
"rkey": {
"type": "string"
},
"spaceUri": {
"type": "string",
"format": "at-uri"
},
"collection": {
"type": "string",
"format": "nsid"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Delete a record from a space. Callers can delete their own records; the space owner can delete any record (via a separate admin path)."
}