May
30
Sat
Retrospective
9:28 AM – 2:13 PM
Zoom
Pel turpis traho crux vir.
calendar-events / #72
9:28 AM – 2:13 PM
Zoom
Pel turpis traho crux vir.
curl -sS \
"https://example-data.com/api/v1/calendar-events/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/72"
);
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/72"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/72"
)
calendar_event = res.json() {
"id": 72,
"ownerUserId": 32,
"title": "Retrospective",
"description": "Pel turpis traho crux vir.",
"startAt": "2026-05-30T09:28:07.750Z",
"endAt": "2026-05-30T14:13:44.040Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
124,
100,
87,
61
],
"createdAt": "2026-03-16T08:22:19.045Z",
"updatedAt": "2026-05-02T07:49:26.602Z"
}