Feb
21
Sat
Demo Day
4:40 AM – 9:37 AM
Microsoft Teams
Dolorum tantum clarus.
calendar-events / #105
4:40 AM – 9:37 AM
Microsoft Teams
Dolorum tantum clarus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/105" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/105"
);
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/105"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/105"
)
calendar_event = res.json() {
"id": 105,
"ownerUserId": 43,
"title": "Demo Day",
"description": "Dolorum tantum clarus.",
"startAt": "2026-02-21T04:40:25.496Z",
"endAt": "2026-02-21T09:37:39.327Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
246,
46
],
"createdAt": "2026-04-13T15:27:52.304Z",
"updatedAt": "2026-05-09T14:36:36.919Z"
}