Apr
14
Tue
Security Training
4:38 AM – 6:41 AM
Conference Room A
Cado qui consequatur undique tondeo terra ustilo cui tabula.
calendar-events / #175
4:38 AM – 6:41 AM
Conference Room A
Cado qui consequatur undique tondeo terra ustilo cui tabula.
curl -sS \
"https://example-data.com/api/v1/calendar-events/175" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/175"
);
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/175"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/175"
)
calendar_event = res.json() {
"id": 175,
"ownerUserId": 76,
"title": "Security Training",
"description": "Cado qui consequatur undique tondeo terra ustilo cui tabula.",
"startAt": "2026-04-14T04:38:07.127Z",
"endAt": "2026-04-14T06:41:19.298Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
44,
99
],
"createdAt": "2026-04-20T17:07:39.819Z",
"updatedAt": "2026-05-13T09:34:35.135Z"
}