May
6
Wed
Design Critique
5:17 AM – 5:17 AM
Microsoft Teams
Conturbo beneficium capto amplus clam trado.
calendar-events / #189
5:17 AM – 5:17 AM
Microsoft Teams
Conturbo beneficium capto amplus clam trado.
curl -sS \
"https://example-data.com/api/v1/calendar-events/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/189"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/189"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/189"
)
calendar_event = res.json() {
"id": 189,
"ownerUserId": 82,
"title": "Design Critique",
"description": "Conturbo beneficium capto amplus clam trado.",
"startAt": "2026-05-06T05:17:34.014Z",
"endAt": "2026-05-07T05:17:34.014Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
41
],
"createdAt": "2026-05-18T18:48:59.068Z",
"updatedAt": "2026-05-21T16:42:52.628Z"
}