Jul
3
Fri
Retrospective
9:15 PM – 9:15 PM
Conference Room A
Thalassinus quisquam desipio approbo appello vestigium tenuis.
calendar-events / #110
9:15 PM – 9:15 PM
Conference Room A
Thalassinus quisquam desipio approbo appello vestigium tenuis.
curl -sS \
"https://example-data.com/api/v1/calendar-events/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/110"
);
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/110"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/110"
)
calendar_event = res.json() {
"id": 110,
"ownerUserId": 46,
"title": "Retrospective",
"description": "Thalassinus quisquam desipio approbo appello vestigium tenuis.",
"startAt": "2026-07-03T21:15:03.022Z",
"endAt": "2026-07-04T21:15:03.022Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-04-02T15:32:57.717Z",
"updatedAt": "2026-04-10T00:48:48.469Z"
}