virtual_event_rsvp
POST /virtual-events/:sessionID/rsvp — RSVP to Live Call
RSVP to a Live Call. The user is added to the matching attendance list on the session doc (participantIDs for yes, maybeIDs for maybe, notIDs for no) and removed from the others.
Three statuses:
yes— you intend to attend; you'll show up inattendeeCount.maybe— soft attendance signal.no— you're declining. Use this to back out after a prioryesormaybe.
Note: the meetUrl (join link) on GET /virtual-events/:sessionID is not gated on your RSVP — it's returned whenever the host has set one, regardless of attendance state. RSVPing is purely an attendance signal.
Idempotent — re-RSVPing with the same status is a no-op.
⚠️ WRITE operation: this mutates your DC account data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | Your RSVP status for this session. | |
| sessionID | Yes | The Live Call session ID. Find IDs via `GET /virtual-events`. |