May
14
Thu
Onboarding Session
3:26 AM – 7:06 AM
Conference Room A
Decet acerbitas sollicito laborum consectetur.
calendar-events / #36
3:26 AM – 7:06 AM
Conference Room A
Decet acerbitas sollicito laborum consectetur.
curl -sS \
"https://example-data.com/api/v1/calendar-events/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/36"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/36"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/36"
)
calendar_event = res.json() {
"id": 36,
"ownerUserId": 19,
"title": "Onboarding Session",
"description": "Decet acerbitas sollicito laborum consectetur.",
"startAt": "2026-05-14T03:26:01.291Z",
"endAt": "2026-05-14T07:06:12.647Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
94
],
"createdAt": "2026-02-28T03:19:58.828Z",
"updatedAt": "2026-03-23T12:53:04.700Z"
}