Transfer space ownership to another DID. Caller must be the current owner. The new owner must already be a write member of the space. The previous owner becomes a regular write member.
Input
Encoding
application/jsonnewOwnerDid
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/jsonspace
refrsvp.atmo.space.defs#spaceView
Required
No description available.
Errors
NotFound
Forbidden
InvalidRequest
Raised if the new owner is not a write member of the space. 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",
"newOwnerDid"
],
"properties": {
"spaceUri": {
"type": "string",
"format": "at-uri"
},
"newOwnerDid": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "Forbidden"
},
{
"name": "InvalidRequest",
"description": "Raised if the new owner is not a write member of the space."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"space"
],
"properties": {
"space": {
"ref": "rsvp.atmo.space.defs#spaceView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Transfer space ownership to another DID. Caller must be the current owner. The new owner must already be a write member of the space. The previous owner becomes a regular write member."
}