rsvp.atmo.space.transferOwnership

atmo.rsvp

Documentation

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.

main procedure

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

Encodingapplication/json
newOwnerDid 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

Encodingapplication/json

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.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
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."
}

Lexicon Garden

@