Jun
9
Tue
Budget Review
11:46 AM – 4:55 PM
Utpote tergum provident magnam civitas.
calendar-events / #192
11:46 AM – 4:55 PM
Utpote tergum provident magnam civitas.
Budget Review
11:46 AM
curl -sS \
"https://example-data.com/api/v1/calendar-events/192" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/192"
);
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/192"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/192"
)
calendar_event = res.json() {
"id": 192,
"ownerUserId": 84,
"title": "Budget Review",
"description": "Utpote tergum provident magnam civitas.",
"startAt": "2026-06-09T11:46:30.203Z",
"endAt": "2026-06-09T16:55:35.154Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
110,
69,
189,
129
],
"createdAt": "2026-04-22T00:30:04.283Z",
"updatedAt": "2026-05-11T11:23:57.402Z"
}