Mar
14
Sat
Retrospective
2:44 PM – 2:44 PM
Google Meet
Coepi candidus quasi comis delectus ubi convoco abutor tergiversatio vobis.
calendar-events / #48
2:44 PM – 2:44 PM
Google Meet
Coepi candidus quasi comis delectus ubi convoco abutor tergiversatio vobis.
curl -sS \
"https://example-data.com/api/v1/calendar-events/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/48"
);
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/48"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/48"
)
calendar_event = res.json() {
"id": 48,
"ownerUserId": 23,
"title": "Retrospective",
"description": "Coepi candidus quasi comis delectus ubi convoco abutor tergiversatio vobis.",
"startAt": "2026-03-14T14:44:33.793Z",
"endAt": "2026-03-15T14:44:33.793Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
70,
67
],
"createdAt": "2026-02-23T20:26:31.231Z",
"updatedAt": "2026-03-10T02:31:18.961Z"
}