Feb
26
Thu
Team Standup
11:39 AM – 7:11 PM
Sulum advoco amplexus commemoro.
calendar-events / #204
11:39 AM – 7:11 PM
Sulum advoco amplexus commemoro.
Team Standup
11:39 AM
curl -sS \
"https://example-data.com/api/v1/calendar-events/204" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/204"
);
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/204"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/204"
)
calendar_event = res.json() {
"id": 204,
"ownerUserId": 89,
"title": "Team Standup",
"description": "Sulum advoco amplexus commemoro.",
"startAt": "2026-02-26T11:39:05.333Z",
"endAt": "2026-02-26T19:11:48.483Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
92,
138
],
"createdAt": "2026-03-16T12:18:42.537Z",
"updatedAt": "2026-03-17T12:06:17.133Z"
}