Jul
10
Fri
1:1 with Manager
5:34 PM – 7:07 PM
Zoom
Universe comis voro ubi.
calendar-events / #12
5:34 PM – 7:07 PM
Zoom
Universe comis voro ubi.
curl -sS \
"https://example-data.com/api/v1/calendar-events/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/12"
);
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/12"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/12"
)
calendar_event = res.json() {
"id": 12,
"ownerUserId": 5,
"title": "1:1 with Manager",
"description": "Universe comis voro ubi.",
"startAt": "2026-07-10T17:34:56.939Z",
"endAt": "2026-07-10T19:07:16.890Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-05-12T16:11:25.487Z",
"updatedAt": "2026-05-15T16:39:29.676Z"
}