Apr
6
Mon
Team Standup
3:53 AM – 5:37 AM
Conference Room B
Fugiat labore allatus arma valeo.
calendar-events / #37
3:53 AM – 5:37 AM
Conference Room B
Fugiat labore allatus arma valeo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/37"
);
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/37"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/37"
)
calendar_event = res.json() {
"id": 37,
"ownerUserId": 20,
"title": "Team Standup",
"description": "Fugiat labore allatus arma valeo.",
"startAt": "2026-04-06T03:53:08.305Z",
"endAt": "2026-04-06T05:37:51.700Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
155,
191,
222,
188,
113
],
"createdAt": "2026-03-10T00:18:05.077Z",
"updatedAt": "2026-03-24T15:30:20.914Z"
}