Apr
4
Sat
Team Standup
11:28 PM – 1:41 AM
Rooftop
Studio coerceo abduco synagoga delibero.
calendar-events / #215
11:28 PM – 1:41 AM
Rooftop
Studio coerceo abduco synagoga delibero.
curl -sS \
"https://example-data.com/api/v1/calendar-events/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/215"
);
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/215"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/215"
)
calendar_event = res.json() {
"id": 215,
"ownerUserId": 93,
"title": "Team Standup",
"description": "Studio coerceo abduco synagoga delibero.",
"startAt": "2026-04-04T23:28:17.917Z",
"endAt": "2026-04-05T01:41:36.257Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
210,
151
],
"createdAt": "2026-03-07T19:36:57.646Z",
"updatedAt": "2026-05-17T23:25:42.650Z"
}