Apr
7
Tue
Retrospective
2:00 PM – 5:49 PM
Crastinus auctor sursum.
calendar-events / #216
2:00 PM – 5:49 PM
Crastinus auctor sursum.
Retrospective
2:00 PM
curl -sS \
"https://example-data.com/api/v1/calendar-events/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/216"
);
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/216"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/216"
)
calendar_event = res.json() {
"id": 216,
"ownerUserId": 93,
"title": "Retrospective",
"description": "Crastinus auctor sursum.",
"startAt": "2026-04-07T14:00:04.030Z",
"endAt": "2026-04-07T17:49:48.313Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-14T21:09:23.492Z",
"updatedAt": "2026-04-25T09:46:55.785Z"
}