Mar
19
Thu
Architecture Review
12:59 AM – 3:42 AM
Conference Room B
Caelestis tamdiu caelum torqueo ago sufficio capio degero tabgo.
calendar-events / #225
12:59 AM – 3:42 AM
Conference Room B
Caelestis tamdiu caelum torqueo ago sufficio capio degero tabgo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/225"
);
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/225"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/225"
)
calendar_event = res.json() {
"id": 225,
"ownerUserId": 96,
"title": "Architecture Review",
"description": "Caelestis tamdiu caelum torqueo ago sufficio capio degero tabgo.",
"startAt": "2026-03-19T00:59:29.211Z",
"endAt": "2026-03-19T03:42:42.849Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
94
],
"createdAt": "2026-02-28T21:37:27.662Z",
"updatedAt": "2026-03-04T06:43:22.009Z"
}