Jul
27
Mon
Architecture Review
3:46 AM – 5:02 AM
Rooftop
Animi adeptio decens articulus bis amita.
calendar-events / #212
3:46 AM – 5:02 AM
Rooftop
Animi adeptio decens articulus bis amita.
curl -sS \
"https://example-data.com/api/v1/calendar-events/212" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/212"
);
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/212"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/212"
)
calendar_event = res.json() {
"id": 212,
"ownerUserId": 92,
"title": "Architecture Review",
"description": "Animi adeptio decens articulus bis amita.",
"startAt": "2026-07-27T03:46:28.432Z",
"endAt": "2026-07-27T05:02:22.100Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
110,
1,
222
],
"createdAt": "2026-03-02T02:12:02.259Z",
"updatedAt": "2026-04-13T09:50:41.323Z"
}