rsvp.atmo.space.leaveSpace

atmo.rsvp

Documentation

Remove the caller from a space's member list. The owner cannot leave — they must delete the space instead.

main procedure

Remove the caller from a space's member list. The owner cannot leave — they must delete the space instead.

Input

Encodingapplication/json
spaceUri stringat-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Output

Encodingapplication/json
ok 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.

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"
      ],
      "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."
}

Lexicon Garden

@