Apr
6
Mon
Architecture Review
10:15 AM – 1:32 PM
Office - Floor 3
Tabgo patria sum decor vorago tenax quod atrocitas thesis.
calendar-events / #31
10:15 AM – 1:32 PM
Office - Floor 3
Tabgo patria sum decor vorago tenax quod atrocitas thesis.
curl -sS \
"https://example-data.com/api/v1/calendar-events/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/31"
);
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/31"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/31"
)
calendar_event = res.json() {
"id": 31,
"ownerUserId": 16,
"title": "Architecture Review",
"description": "Tabgo patria sum decor vorago tenax quod atrocitas thesis.",
"startAt": "2026-04-06T10:15:54.496Z",
"endAt": "2026-04-06T13:32:52.585Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
167
],
"createdAt": "2026-03-04T20:02:04.697Z",
"updatedAt": "2026-05-03T05:33:43.187Z"
}