Mar
20
Fri
Security Training
11:05 AM – 5:19 PM
Zoom
Deprecator subseco sto tui clementia ciminatio caste.
calendar-events / #28
11:05 AM – 5:19 PM
Zoom
Deprecator subseco sto tui clementia ciminatio caste.
curl -sS \
"https://example-data.com/api/v1/calendar-events/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/28"
);
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/28"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/28"
)
calendar_event = res.json() {
"id": 28,
"ownerUserId": 13,
"title": "Security Training",
"description": "Deprecator subseco sto tui clementia ciminatio caste.",
"startAt": "2026-03-20T11:05:43.167Z",
"endAt": "2026-03-20T17:19:18.883Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
194,
138,
179,
201,
34
],
"createdAt": "2026-04-18T07:08:28.315Z",
"updatedAt": "2026-04-30T05:21:41.091Z"
}