Remove a member from a space. Owner only. Cannot remove the owner.
Input
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
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
InvalidRequest
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",
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"spaceUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "Forbidden"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Remove a member from a space. Owner only. Cannot remove the owner."
}