Jun
27
Sat
Retrospective
10:43 PM – 2:00 AM
Cafeteria
Crapula accedo conscendo.
calendar-events / #146
10:43 PM – 2:00 AM
Cafeteria
Crapula accedo conscendo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/146"
);
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/146"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/146"
)
calendar_event = res.json() {
"id": 146,
"ownerUserId": 62,
"title": "Retrospective",
"description": "Crapula accedo conscendo.",
"startAt": "2026-06-27T22:43:41.837Z",
"endAt": "2026-06-28T02:00:28.162Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
164,
69,
219,
169,
148
],
"createdAt": "2026-03-22T07:17:39.111Z",
"updatedAt": "2026-04-05T01:38:03.911Z"
}