Mar
31
Tue
Sprint Planning
1:42 PM – 6:12 PM
Microsoft Teams
Cogo statua socius decimus id.
calendar-events / #59
1:42 PM – 6:12 PM
Microsoft Teams
Cogo statua socius decimus id.
curl -sS \
"https://example-data.com/api/v1/calendar-events/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/59"
);
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/59"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/59"
)
calendar_event = res.json() {
"id": 59,
"ownerUserId": 28,
"title": "Sprint Planning",
"description": "Cogo statua socius decimus id.",
"startAt": "2026-03-31T13:42:05.432Z",
"endAt": "2026-03-31T18:12:51.611Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
26,
94,
242,
166,
217
],
"createdAt": "2026-03-19T05:08:15.797Z",
"updatedAt": "2026-03-25T15:28:49.879Z"
}