Skip to main content

rsvp

client.calendar.rsvp(id: string, data: CalendarRSVPRequest): Promise<void>

Sends an RSVP response to a calendar event.

Records a participant's attendance response (accept, decline, tentative) for the specified event.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the calendar event
dataCalendarRSVPRequestYesThe RSVP payload

Returns

Promise<void> — A promise that resolves when the RSVP has been recorded

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.calendar.rsvp('id', /* CalendarRSVPRequest */);
console.log(result);