May
11
Mon
Quarterly Review
8:02 PM – 8:02 PM
Office - Floor 3
Absum suffoco arto usque.
calendar-events / #205
8:02 PM – 8:02 PM
Office - Floor 3
Absum suffoco arto usque.
curl -sS \
"https://example-data.com/api/v1/calendar-events/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/205"
);
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/205"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/205"
)
calendar_event = res.json() {
"id": 205,
"ownerUserId": 89,
"title": "Quarterly Review",
"description": "Absum suffoco arto usque.",
"startAt": "2026-05-11T20:02:59.218Z",
"endAt": "2026-05-12T20:02:59.218Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
57
],
"createdAt": "2026-04-14T21:12:14.069Z",
"updatedAt": "2026-05-13T16:59:17.701Z"
}