Jul
19
Sun
Security Training
4:16 AM – 7:53 AM
Creptio vigilo vesica tero sono deripio vulgo stultus angustus.
calendar-events / #217
4:16 AM – 7:53 AM
Creptio vigilo vesica tero sono deripio vulgo stultus angustus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/217" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/217"
);
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/217"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/217"
)
calendar_event = res.json() {
"id": 217,
"ownerUserId": 94,
"title": "Security Training",
"description": "Creptio vigilo vesica tero sono deripio vulgo stultus angustus.",
"startAt": "2026-07-19T04:16:18.352Z",
"endAt": "2026-07-19T07:53:42.762Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
90
],
"createdAt": "2026-05-07T11:34:50.306Z",
"updatedAt": "2026-05-21T16:55:34.355Z"
}