May
30
Sat
Team Standup
6:19 AM – 1:38 PM
Zoom
Statim commodo cumque conscendo adimpleo valetudo.
calendar-events / #169
6:19 AM – 1:38 PM
Zoom
Statim commodo cumque conscendo adimpleo valetudo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/169"
);
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/169"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/169"
)
calendar_event = res.json() {
"id": 169,
"ownerUserId": 73,
"title": "Team Standup",
"description": "Statim commodo cumque conscendo adimpleo valetudo.",
"startAt": "2026-05-30T06:19:43.487Z",
"endAt": "2026-05-30T13:38:58.917Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
240,
9,
123,
160
],
"createdAt": "2026-02-23T08:42:41.636Z",
"updatedAt": "2026-04-19T04:47:45.302Z"
}