Jul
15
Wed
Architecture Review
5:49 AM – 5:49 AM
Microsoft Teams
Suggero vulnus celo cui tener terminatio.
Overview
calendar-events / #524
5:49 AM – 5:49 AM
Microsoft Teams
Suggero vulnus celo cui tener terminatio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/524" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/524" ); 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/524"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/524"
)
calendar_event = res.json() Response
{
"id": 524,
"ownerUserId": 218,
"title": "Architecture Review",
"description": "Suggero vulnus celo cui tener terminatio.",
"startAt": "2026-07-15T05:49:05.346Z",
"endAt": "2026-07-16T05:49:05.346Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-25T03:04:45.715Z",
"updatedAt": "2026-05-16T03:25:41.510Z"
}