rsvp.atmo.space.invite.redeem

atmo.rsvp

Documentation

Redeem an invite token. The JWT issuer becomes a member of the space with the invite's perms.

main procedure

Redeem an invite token. The JWT issuer becomes a member of the space with the invite's perms.

Input

Encodingapplication/json
token string Required

No description available.

Output

Encodingapplication/json
perms string Required

No description available.

Known values: read, write
spaceUri stringat-uri Required

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

Errors

InvalidInvite
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": [
        "token"
      ],
      "properties": {
        "token": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "InvalidInvite"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "spaceUri",
        "perms"
      ],
      "properties": {
        "perms": {
          "type": "string",
          "knownValues": [
            "read",
            "write"
          ]
        },
        "spaceUri": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Redeem an invite token. The JWT issuer becomes a member of the space with the invite's perms."
}

Lexicon Garden

@