Jul
17
Fri
Onboarding Session
5:53 AM – 11:56 AM
Microsoft Teams
Adhuc uterque cito tibi similique termes.
Overview
calendar-events / #136
5:53 AM – 11:56 AM
Microsoft Teams
Adhuc uterque cito tibi similique termes.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/136" ); 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/136"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/136"
)
calendar_event = res.json() Response
{
"id": 136,
"ownerUserId": 56,
"title": "Onboarding Session",
"description": "Adhuc uterque cito tibi similique termes.",
"startAt": "2026-07-17T05:53:44.390Z",
"endAt": "2026-07-17T11:56:12.436Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
209
],
"createdAt": "2026-05-08T03:33:32.942Z",
"updatedAt": "2026-05-16T12:02:37.220Z"
}