Feb
25
Wed
Engineering All-Hands
3:53 PM – 5:31 PM
Zoom
Debitis deporto beatus amita temporibus.
calendar-events / #93
3:53 PM – 5:31 PM
Zoom
Debitis deporto beatus amita temporibus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/93" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/93"
);
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/93"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/93"
)
calendar_event = res.json() {
"id": 93,
"ownerUserId": 39,
"title": "Engineering All-Hands",
"description": "Debitis deporto beatus amita temporibus.",
"startAt": "2026-02-25T15:53:17.883Z",
"endAt": "2026-02-25T17:31:45.634Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
230,
132,
26,
239,
135
],
"createdAt": "2026-05-09T03:40:47.280Z",
"updatedAt": "2026-05-10T13:23:40.262Z"
}