Apr
26
Sun
Quarterly Review
12:08 PM – 2:13 PM
Microsoft Teams
Debeo cilicium depulso solvo.
calendar-events / #116
12:08 PM – 2:13 PM
Microsoft Teams
Debeo cilicium depulso solvo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/116"
);
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/116"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/116"
)
calendar_event = res.json() {
"id": 116,
"ownerUserId": 48,
"title": "Quarterly Review",
"description": "Debeo cilicium depulso solvo.",
"startAt": "2026-04-26T12:08:32.021Z",
"endAt": "2026-04-26T14:13:10.814Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-14T12:04:19.487Z",
"updatedAt": "2026-03-29T03:14:48.960Z"
}