May
10
Sun
Team Lunch
6:16 PM – 10:04 PM
Microsoft Teams
Abbas curriculum audentia.
calendar-events / #45
6:16 PM – 10:04 PM
Microsoft Teams
Abbas curriculum audentia.
curl -sS \
"https://example-data.com/api/v1/calendar-events/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/45"
);
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/45"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/45"
)
calendar_event = res.json() {
"id": 45,
"ownerUserId": 23,
"title": "Team Lunch",
"description": "Abbas curriculum audentia.",
"startAt": "2026-05-10T18:16:27.340Z",
"endAt": "2026-05-10T22:04:20.494Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
75,
121,
24,
174
],
"createdAt": "2026-03-27T15:32:03.981Z",
"updatedAt": "2026-04-18T00:04:09.119Z"
}