Skip to main content

getEvent

client.calendar.getEvent(id: string): Promise<CalendarEvent>

Retrieves a specific calendar event by ID.

Returns the full event details including all metadata, participants, and configuration.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the calendar event

Returns

Promise<CalendarEvent> — A promise that resolves to the CalendarEvent object

Example

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

const client = new CodeBoltClient();

const result = await client.calendar.getEvent('id');
console.log(result);