Jul
26
Sun
1:1 with Manager
8:45 PM – 2:36 AM
Microsoft Teams
Pax uredo asporto constans.
Overview
calendar-events / #107
8:45 PM – 2:36 AM
Microsoft Teams
Pax uredo asporto constans.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/107" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/107" ); 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/107"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/107"
)
calendar_event = res.json() Response
{
"id": 107,
"ownerUserId": 44,
"title": "1:1 with Manager",
"description": "Pax uredo asporto constans.",
"startAt": "2026-07-26T20:45:48.682Z",
"endAt": "2026-07-27T02:36:47.390Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-14T22:40:37.505Z",
"updatedAt": "2026-05-05T23:56:57.924Z"
}