Jul
1
Wed
Sprint Planning
4:12 PM – 4:12 PM
Office - Floor 3
Colo ventito apto tero tabesco delinquo consectetur tergum cursim.
calendar-events / #199
4:12 PM – 4:12 PM
Office - Floor 3
Colo ventito apto tero tabesco delinquo consectetur tergum cursim.
curl -sS \
"https://example-data.com/api/v1/calendar-events/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/199"
);
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/199"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/199"
)
calendar_event = res.json() {
"id": 199,
"ownerUserId": 86,
"title": "Sprint Planning",
"description": "Colo ventito apto tero tabesco delinquo consectetur tergum cursim.",
"startAt": "2026-07-01T16:12:15.660Z",
"endAt": "2026-07-02T16:12:15.660Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
92,
232,
29,
74
],
"createdAt": "2026-04-28T04:38:45.503Z",
"updatedAt": "2026-04-29T02:19:51.929Z"
}