Jun
16
Tue
Sprint Planning
10:51 PM – 10:51 PM
Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.
calendar-events / #197
10:51 PM – 10:51 PM
Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.
curl -sS \
"https://example-data.com/api/v1/calendar-events/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/197"
);
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/197"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/197"
)
calendar_event = res.json() {
"id": 197,
"ownerUserId": 85,
"title": "Sprint Planning",
"description": "Volaticus amet armarium cenaculum vivo sponte condico sollers audacia via.",
"startAt": "2026-06-16T22:51:52.379Z",
"endAt": "2026-06-17T22:51:52.379Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
149,
67,
142
],
"createdAt": "2026-05-13T01:27:44.714Z",
"updatedAt": "2026-05-14T02:40:42.781Z"
}