Query community.lexicon.calendar.rsvp records with filters
Parameters
actor
string
at-identifier
Optional
Filter by DID or handle (triggers on-demand backfill)
byUser
string
did
Optional
Only used with spaceUri — filter to records authored by this DID.
cursor
string
Optional
No description available.
hydrateEvent
boolean
Optional
Embed the referenced event record
limit
integer
Optional
No description available.
order
string
Optional
Sort direction (default: desc for dates/numbers/counts, asc for strings)
profiles
boolean
Optional
Include profile + identity info keyed by DID
sort
string
Optional
Field to sort by (default: time_us)
spaceUri
string
at-uri
Optional
If set, query records inside this permissioned space (requires service-auth JWT).
status
string
Optional
Filter by status
subjectUri
string
Optional
Filter by subject.uri
Output
application/jsoncursor
string
Optional
No description available.
profiles
array
Optional
No description available.
records
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"records"
],
"properties": {
"cursor": {
"type": "string"
},
"records": {
"type": "array",
"items": {
"ref": "#record",
"type": "ref"
}
},
"profiles": {
"type": "array",
"items": {
"ref": "#profileEntry",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"sort": {
"type": "string",
"description": "Field to sort by (default: time_us)",
"knownValues": [
"status",
"subjectUri"
]
},
"actor": {
"type": "string",
"format": "at-identifier",
"description": "Filter by DID or handle (triggers on-demand backfill)"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1
},
"order": {
"type": "string",
"description": "Sort direction (default: desc for dates/numbers/counts, asc for strings)",
"knownValues": [
"asc",
"desc"
]
},
"byUser": {
"type": "string",
"format": "did",
"description": "Only used with spaceUri — filter to records authored by this DID."
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"description": "Filter by status"
},
"profiles": {
"type": "boolean",
"description": "Include profile + identity info keyed by DID"
},
"spaceUri": {
"type": "string",
"format": "at-uri",
"description": "If set, query records inside this permissioned space (requires service-auth JWT)."
},
"subjectUri": {
"type": "string",
"description": "Filter by subject.uri"
},
"hydrateEvent": {
"type": "boolean",
"description": "Embed the referenced event record"
}
}
},
"description": "Query community.lexicon.calendar.rsvp records with filters"
}