Jun
7
Sun
Sprint Planning
4:48 PM – 7:06 PM
Usitas porro turba decimus candidus desino creber.
calendar-events / #64
4:48 PM – 7:06 PM
Usitas porro turba decimus candidus desino creber.
curl -sS \
"https://example-data.com/api/v1/calendar-events/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/64"
);
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/64"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/64"
)
calendar_event = res.json() {
"id": 64,
"ownerUserId": 30,
"title": "Sprint Planning",
"description": "Usitas porro turba decimus candidus desino creber.",
"startAt": "2026-06-07T16:48:02.683Z",
"endAt": "2026-06-07T19:06:53.274Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
108,
235,
78,
4,
135
],
"createdAt": "2026-05-08T18:11:29.045Z",
"updatedAt": "2026-05-13T05:59:00.754Z"
}