Mar
12
Thu
Board Meeting
2:43 PM – 2:43 PM
Google Meet
Thalassinus volup cras calamitas in.
calendar-events / #180
2:43 PM – 2:43 PM
Google Meet
Thalassinus volup cras calamitas in.
curl -sS \
"https://example-data.com/api/v1/calendar-events/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/180"
);
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/180"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/180"
)
calendar_event = res.json() {
"id": 180,
"ownerUserId": 79,
"title": "Board Meeting",
"description": "Thalassinus volup cras calamitas in.",
"startAt": "2026-03-12T14:43:33.187Z",
"endAt": "2026-03-13T14:43:33.187Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
103
],
"createdAt": "2026-04-25T11:03:41.955Z",
"updatedAt": "2026-05-20T03:15:16.472Z"
}