Aug
6
Thu
Budget Review
2:29 PM – 3:56 PM
Microsoft Teams
Conturbo tenetur volutabrum abscido somniculosus ambitus adulescens atavus itaque id.
Overview
calendar-events / #178
2:29 PM – 3:56 PM
Microsoft Teams
Conturbo tenetur volutabrum abscido somniculosus ambitus adulescens atavus itaque id.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/178" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/178" ); 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/178"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/178"
)
calendar_event = res.json() Response
{
"id": 178,
"ownerUserId": 78,
"title": "Budget Review",
"description": "Conturbo tenetur volutabrum abscido somniculosus ambitus adulescens atavus itaque id.",
"startAt": "2026-08-06T14:29:13.571Z",
"endAt": "2026-08-06T15:56:55.448Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-05-17T09:26:42.388Z",
"updatedAt": "2026-05-18T22:00:41.676Z"
}