Mar
14
Sat
Off-site Planning
12:09 AM – 2:42 AM
Zoom
Capio voluptas aestivus.
calendar-events / #211
12:09 AM – 2:42 AM
Zoom
Capio voluptas aestivus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/211"
);
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/211"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/211"
)
calendar_event = res.json() {
"id": 211,
"ownerUserId": 92,
"title": "Off-site Planning",
"description": "Capio voluptas aestivus.",
"startAt": "2026-03-14T00:09:25.590Z",
"endAt": "2026-03-14T02:42:34.133Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
186,
245,
42,
248,
8
],
"createdAt": "2026-04-20T15:15:09.732Z",
"updatedAt": "2026-04-27T02:28:56.404Z"
}