Mar
11
Wed
Retrospective
2:34 PM – 2:34 PM
Microsoft Teams
Cilicium repudiandae defaeco.
Overview
calendar-events / #369
2:34 PM – 2:34 PM
Microsoft Teams
Cilicium repudiandae defaeco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/369" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/369" ); 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/369"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/369"
)
calendar_event = res.json() Response
{
"id": 369,
"ownerUserId": 150,
"title": "Retrospective",
"description": "Cilicium repudiandae defaeco.",
"startAt": "2026-03-11T14:34:01.206Z",
"endAt": "2026-03-12T14:34:01.206Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
164,
198,
55,
156,
148
],
"createdAt": "2026-03-06T12:09:49.283Z",
"updatedAt": "2026-04-30T21:44:04.662Z"
}