Jun
8
Mon
Retrospective
3:46 PM – 3:46 PM
Amplitudo doloremque certe cicuta maiores.
calendar-events / #133
3:46 PM – 3:46 PM
Amplitudo doloremque certe cicuta maiores.
Retrospective
3:46 PM
curl -sS \
"https://example-data.com/api/v1/calendar-events/133" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/133"
);
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/133"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/133"
)
calendar_event = res.json() {
"id": 133,
"ownerUserId": 55,
"title": "Retrospective",
"description": "Amplitudo doloremque certe cicuta maiores.",
"startAt": "2026-06-08T15:46:34.927Z",
"endAt": "2026-06-09T15:46:34.927Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
82,
2,
65,
40
],
"createdAt": "2026-04-12T15:42:01.989Z",
"updatedAt": "2026-05-03T02:14:34.054Z"
}