May
10
Sun
Design Critique
11:30 AM – 11:30 AM
Microsoft Teams
Vinum cresco solum.
calendar-events / #202
11:30 AM – 11:30 AM
Microsoft Teams
Vinum cresco solum.
curl -sS \
"https://example-data.com/api/v1/calendar-events/202" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/202"
);
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/202"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/202"
)
calendar_event = res.json() {
"id": 202,
"ownerUserId": 88,
"title": "Design Critique",
"description": "Vinum cresco solum.",
"startAt": "2026-05-10T11:30:52.650Z",
"endAt": "2026-05-11T11:30:52.650Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
152,
93,
52
],
"createdAt": "2026-03-06T05:03:56.373Z",
"updatedAt": "2026-03-08T12:47:42.037Z"
}