Jul
28
Tue
Engineering All-Hands
4:24 AM – 7:00 AM
Cafeteria
Compello trado suscipio.
calendar-events / #151
4:24 AM – 7:00 AM
Cafeteria
Compello trado suscipio.
curl -sS \
"https://example-data.com/api/v1/calendar-events/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/151"
);
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/151"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/151"
)
calendar_event = res.json() {
"id": 151,
"ownerUserId": 65,
"title": "Engineering All-Hands",
"description": "Compello trado suscipio.",
"startAt": "2026-07-28T04:24:23.263Z",
"endAt": "2026-07-28T07:00:49.700Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
245,
227,
143
],
"createdAt": "2026-04-10T09:11:18.396Z",
"updatedAt": "2026-04-16T11:31:47.952Z"
}