May
25
Mon
1:1 with Manager
5:01 PM – 7:39 PM
Correptius alii crinis architecto eaque.
Overview
calendar-events / #54
5:01 PM – 7:39 PM
Correptius alii crinis architecto eaque.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/54" ); 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/54"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/54"
)
calendar_event = res.json() Response
{
"id": 54,
"ownerUserId": 26,
"title": "1:1 with Manager",
"description": "Correptius alii crinis architecto eaque.",
"startAt": "2026-05-25T17:01:38.417Z",
"endAt": "2026-05-25T19:39:11.636Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-05-18T01:52:48.703Z",
"updatedAt": "2026-05-21T22:49:02.508Z"
}