Aug
3
Mon
Off-site Planning
12:14 PM – 8:12 PM
Google Meet
Absconditus convoco aurum molestiae voluptatem crudelis quasi conturbo ocer sed.
calendar-events / #132
12:14 PM – 8:12 PM
Google Meet
Absconditus convoco aurum molestiae voluptatem crudelis quasi conturbo ocer sed.
curl -sS \
"https://example-data.com/api/v1/calendar-events/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/132"
);
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/132"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/132"
)
calendar_event = res.json() {
"id": 132,
"ownerUserId": 55,
"title": "Off-site Planning",
"description": "Absconditus convoco aurum molestiae voluptatem crudelis quasi conturbo ocer sed.",
"startAt": "2026-08-03T12:14:16.857Z",
"endAt": "2026-08-03T20:12:29.380Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
33,
170
],
"createdAt": "2026-05-07T16:33:14.144Z",
"updatedAt": "2026-05-07T17:59:15.195Z"
}