rsvp.atmo.space.whoami

atmo.rsvp

Documentation

Report the caller's relationship to a space: whether they are the owner, a member, and at what permission level. Useful for clients to avoid a listMembers roundtrip.

main query

Report the caller's relationship to a space: whether they are the owner, a member, and at what permission level. Useful for clients to avoid a listMembers roundtrip.

Parameters

spaceUri string at-uri Required

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

Output

Encodingapplication/json
isMember boolean Required

No description available.

isOwner boolean Required

No description available.

perms string Optional

Present only when the caller is a member or the owner.

Known values: read, write

Errors

NotFound
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://api.bsky.social)
Parameters
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "isOwner",
        "isMember"
      ],
      "properties": {
        "perms": {
          "type": "string",
          "description": "Present only when the caller is a member or the owner.",
          "knownValues": [
            "read",
            "write"
          ]
        },
        "isOwner": {
          "type": "boolean"
        },
        "isMember": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "spaceUri"
    ],
    "properties": {
      "spaceUri": {
        "type": "string",
        "format": "at-uri"
      }
    }
  },
  "description": "Report the caller's relationship to a space: whether they are the owner, a member, and at what permission level. Useful for clients to avoid a listMembers roundtrip."
}

Lexicon Garden

@