Jun
11
Thu
Budget Review
2:19 AM – 2:19 AM
Celo adsuesco considero corroboro decor caterva.
calendar-events / #123
2:19 AM – 2:19 AM
Celo adsuesco considero corroboro decor caterva.
Budget Review
2:19 AM
curl -sS \
"https://example-data.com/api/v1/calendar-events/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/123"
);
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/123"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/123"
)
calendar_event = res.json() {
"id": 123,
"ownerUserId": 52,
"title": "Budget Review",
"description": "Celo adsuesco considero corroboro decor caterva.",
"startAt": "2026-06-11T02:19:30.214Z",
"endAt": "2026-06-12T02:19:30.214Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
65,
146,
130,
99
],
"createdAt": "2026-02-26T21:05:58.804Z",
"updatedAt": "2026-03-19T06:25:57.716Z"
}