Jun
15
Mon
1:1 with Manager
8:19 PM – 9:21 PM
Office - Floor 3
Succedo capitulus commodo capitulus.
Overview
calendar-events / #395
8:19 PM – 9:21 PM
Office - Floor 3
Succedo capitulus commodo capitulus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/395" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/395" ); 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/395"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/395"
)
calendar_event = res.json() Response
{
"id": 395,
"ownerUserId": 162,
"title": "1:1 with Manager",
"description": "Succedo capitulus commodo capitulus.",
"startAt": "2026-06-15T20:19:44.008Z",
"endAt": "2026-06-15T21:21:04.511Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
89,
69,
52,
156,
146
],
"createdAt": "2026-04-03T14:57:51.668Z",
"updatedAt": "2026-05-11T16:53:56.085Z"
}