Get an RSVP record for a specific identity and event.
Parameters
Output
Encoding
application/jsoncid
string
Required
CID of the RSVP record.
record
refcommunity.lexicon.calendar.rsvp
Required
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.
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."
}