Jul
7
Tue
1:1 with Manager
9:50 PM – 11:20 PM
Aestivus damnatio ventus praesentium amita minima denego.
Overview
calendar-events / #462
9:50 PM – 11:20 PM
Aestivus damnatio ventus praesentium amita minima denego.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/462" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/462" ); 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/462"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/462"
)
calendar_event = res.json() Response
{
"id": 462,
"ownerUserId": 188,
"title": "1:1 with Manager",
"description": "Aestivus damnatio ventus praesentium amita minima denego.",
"startAt": "2026-07-07T21:50:17.493Z",
"endAt": "2026-07-07T23:20:44.556Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-04-18T03:39:24.943Z",
"updatedAt": "2026-05-09T04:35:31.173Z"
}