rsvp.atmo.space.admin.addMember

atmo.rsvp

Documentation

Add a member to a space. Caller must be the space owner.

main procedure

Add a member to a space. Caller must be the space owner.

Input

Encodingapplication/json
did stringdid Required

A decentralized identifier (DID).

perms string Optional

No description available.

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
Forbidden
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",
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "perms": {
          "type": "string",
          "default": "write",
          "knownValues": [
            "read",
            "write"
          ]
        },
        "spaceUri": {
          "type": "string",
          "format": "at-uri"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "NotFound"
    },
    {
      "name": "Forbidden"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "ok"
      ],
      "properties": {
        "ok": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Add a member to a space. Caller must be the space owner."
}

Lexicon Garden

@