Jul
27
Mon
Onboarding Session
8:43 PM – 4:35 AM
Microsoft Teams
Barba explicabo voluptatibus depopulo vigor arguo.
Overview
calendar-events / #531
8:43 PM – 4:35 AM
Microsoft Teams
Barba explicabo voluptatibus depopulo vigor arguo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/531" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/531" ); 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/531"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/531"
)
calendar_event = res.json() Response
{
"id": 531,
"ownerUserId": 222,
"title": "Onboarding Session",
"description": "Barba explicabo voluptatibus depopulo vigor arguo.",
"startAt": "2026-07-27T20:43:17.013Z",
"endAt": "2026-07-28T04:35:38.054Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-05-09T11:57:58.807Z",
"updatedAt": "2026-05-19T19:22:06.754Z"
}