May
31
Sun
1:1 with Manager
12:53 AM – 5:56 AM
Office - Floor 3
Decipio vivo tutamen teneo.
Overview
calendar-events / #91
12:53 AM – 5:56 AM
Office - Floor 3
Decipio vivo tutamen teneo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/91" ); 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/91"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/91"
)
calendar_event = res.json() Response
{
"id": 91,
"ownerUserId": 38,
"title": "1:1 with Manager",
"description": "Decipio vivo tutamen teneo.",
"startAt": "2026-05-31T00:53:15.673Z",
"endAt": "2026-05-31T05:56:37.680Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
170,
72,
79,
34
],
"createdAt": "2026-03-03T15:03:08.073Z",
"updatedAt": "2026-03-25T21:22:03.974Z"
}