May
9
Sat
1:1 with Manager
6:19 AM – 9:33 AM
Vulticulus tergiversatio cursim aiunt tergum carus curtus.
Overview
calendar-events / #294
6:19 AM – 9:33 AM
Vulticulus tergiversatio cursim aiunt tergum carus curtus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/294" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/294" ); 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/294"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/294"
)
calendar_event = res.json() Response
{
"id": 294,
"ownerUserId": 124,
"title": "1:1 with Manager",
"description": "Vulticulus tergiversatio cursim aiunt tergum carus curtus.",
"startAt": "2026-05-09T06:19:36.630Z",
"endAt": "2026-05-09T09:33:28.394Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
50,
229,
113
],
"createdAt": "2026-05-17T13:32:23.670Z",
"updatedAt": "2026-05-20T10:27:24.114Z"
}