Mar
18
Wed
Off-site Planning
11:14 AM – 3:42 PM
Zoom
Cito statua tenax aeneus aeneus trucido ea.
calendar-events / #228
11:14 AM – 3:42 PM
Zoom
Cito statua tenax aeneus aeneus trucido ea.
curl -sS \
"https://example-data.com/api/v1/calendar-events/228" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/228"
);
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/228"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/228"
)
calendar_event = res.json() {
"id": 228,
"ownerUserId": 97,
"title": "Off-site Planning",
"description": "Cito statua tenax aeneus aeneus trucido ea.",
"startAt": "2026-03-18T11:14:05.915Z",
"endAt": "2026-03-18T15:42:20.291Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
214,
161,
64,
107,
236
],
"createdAt": "2026-03-31T11:39:15.449Z",
"updatedAt": "2026-05-20T21:09:15.735Z"
}