Jul
31
Fri
Architecture Review
9:59 AM – 9:59 AM
Conference Room B
Laudantium vesco consequatur tempora cunae utilis.
Overview
calendar-events / #276
9:59 AM – 9:59 AM
Conference Room B
Laudantium vesco consequatur tempora cunae utilis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/276" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/276" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/276"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/276"
)
calendar_event = res.json() Response
{
"id": 276,
"ownerUserId": 116,
"title": "Architecture Review",
"description": "Laudantium vesco consequatur tempora cunae utilis.",
"startAt": "2026-07-31T09:59:32.657Z",
"endAt": "2026-08-01T09:59:32.657Z",
"isAllDay": true,
"location": "Conference Room B",
"attendeeUserIds": [
102,
38,
172,
11
],
"createdAt": "2026-04-10T05:37:37.416Z",
"updatedAt": "2026-04-21T05:51:14.924Z"
}