Remove the caller from a space's member list. The owner cannot leave — they must delete the space instead.
Input
Encoding
application/jsonspaceUri
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
InvalidRequest
Raised if the caller is the space owner. 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"
],
"properties": {
"spaceUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "InvalidRequest",
"description": "Raised if the caller is the space owner."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Remove the caller from a space's member list. The owner cannot leave — they must delete the space instead."
}