Mar
28
Sat
Quarterly Review
4:35 PM – 6:34 PM
Conference Room B
Laboriosam comedo avaritia.
calendar-events / #43
4:35 PM – 6:34 PM
Conference Room B
Laboriosam comedo avaritia.
curl -sS \
"https://example-data.com/api/v1/calendar-events/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/43"
);
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/43"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/43"
)
calendar_event = res.json() {
"id": 43,
"ownerUserId": 22,
"title": "Quarterly Review",
"description": "Laboriosam comedo avaritia.",
"startAt": "2026-03-28T16:35:08.613Z",
"endAt": "2026-03-28T18:34:47.810Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
151,
141,
223
],
"createdAt": "2026-04-01T04:57:45.109Z",
"updatedAt": "2026-05-10T13:26:22.548Z"
}