May
18
Mon
Customer Interview
8:13 PM – 12:52 AM
Microsoft Teams
Incidunt ea animadverto vitiosus adnuo speculum vindico.
Overview
calendar-events / #303
8:13 PM – 12:52 AM
Microsoft Teams
Incidunt ea animadverto vitiosus adnuo speculum vindico.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/303" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/303" ); 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/303"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/303"
)
calendar_event = res.json() Response
{
"id": 303,
"ownerUserId": 128,
"title": "Customer Interview",
"description": "Incidunt ea animadverto vitiosus adnuo speculum vindico.",
"startAt": "2026-05-18T20:13:37.588Z",
"endAt": "2026-05-19T00:52:16.329Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
83,
67,
115
],
"createdAt": "2026-03-13T15:19:32.419Z",
"updatedAt": "2026-04-19T14:10:23.849Z"
}