Jul
30
Thu
Off-site Planning
2:08 AM – 5:58 AM
Rooftop
Contabesco curis delibero pel necessitatibus.
calendar-events / #103
2:08 AM – 5:58 AM
Rooftop
Contabesco curis delibero pel necessitatibus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/103" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/103"
);
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/103"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/103"
)
calendar_event = res.json() {
"id": 103,
"ownerUserId": 42,
"title": "Off-site Planning",
"description": "Contabesco curis delibero pel necessitatibus.",
"startAt": "2026-07-30T02:08:09.106Z",
"endAt": "2026-07-30T05:58:59.693Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
2,
108,
167,
124
],
"createdAt": "2026-04-19T22:04:14.586Z",
"updatedAt": "2026-05-09T10:15:37.321Z"
}