Jun
16
Tue
Design Critique
11:13 AM – 1:08 PM
Conference Room B
Damnatio amo texo velociter culpo.
calendar-events / #20
11:13 AM – 1:08 PM
Conference Room B
Damnatio amo texo velociter culpo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/20"
);
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/20"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/20"
)
calendar_event = res.json() {
"id": 20,
"ownerUserId": 9,
"title": "Design Critique",
"description": "Damnatio amo texo velociter culpo.",
"startAt": "2026-06-16T11:13:42.829Z",
"endAt": "2026-06-16T13:08:11.206Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [],
"createdAt": "2026-03-22T11:38:02.006Z",
"updatedAt": "2026-04-11T05:53:48.617Z"
}