Mar
20
Fri
Hiring Interview
5:32 AM – 8:10 AM
Conference Room A
Umbra animadverto pecus arbor appello abutor voluptatem callide.
calendar-events / #119
5:32 AM – 8:10 AM
Conference Room A
Umbra animadverto pecus arbor appello abutor voluptatem callide.
curl -sS \
"https://example-data.com/api/v1/calendar-events/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/119"
);
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/119"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/119"
)
calendar_event = res.json() {
"id": 119,
"ownerUserId": 51,
"title": "Hiring Interview",
"description": "Umbra animadverto pecus arbor appello abutor voluptatem callide.",
"startAt": "2026-03-20T05:32:32.772Z",
"endAt": "2026-03-20T08:10:56.717Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
137,
237,
129
],
"createdAt": "2026-03-06T08:46:23.830Z",
"updatedAt": "2026-03-19T05:46:42.915Z"
}