community.lexicon.calendar.getRSVP

lexicon.community

Documentation

Get an RSVP record for a specific identity and event.

main query

Get an RSVP record for a specific identity and event.

Parameters

event string at-uri Required

AT-URI of the event.

identity string did Required

DID of the identity to get the RSVP for.

Output

Encodingapplication/json
cid string Required

CID of the RSVP record.

uri stringat-uri Required

AT-URI of the RSVP record.

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
AT-URI of the event.
DID of the identity to get the RSVP for.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "record"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "description": "CID of the RSVP record."
        },
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the RSVP record."
        },
        "record": {
          "ref": "community.lexicon.calendar.rsvp",
          "type": "ref",
          "description": "The RSVP record."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "event",
      "identity"
    ],
    "properties": {
      "event": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the event."
      },
      "identity": {
        "type": "string",
        "format": "did",
        "description": "DID of the identity to get the RSVP for."
      }
    }
  },
  "description": "Get an RSVP record for a specific identity and event."
}

Lexicon Garden

@