Jun
14
Sun
Demo Day
1:32 PM – 4:09 PM
Conference Room B
Solvo sto sumo sponte.
calendar-events / #7
1:32 PM – 4:09 PM
Conference Room B
Solvo sto sumo sponte.
curl -sS \
"https://example-data.com/api/v1/calendar-events/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/7"
);
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/7"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/7"
)
calendar_event = res.json() {
"id": 7,
"ownerUserId": 2,
"title": "Demo Day",
"description": "Solvo sto sumo sponte.",
"startAt": "2026-06-14T13:32:25.065Z",
"endAt": "2026-06-14T16:09:58.390Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
83,
117,
93
],
"createdAt": "2026-03-26T10:37:24.299Z",
"updatedAt": "2026-04-11T04:11:47.799Z"
}