Jul
10
Fri
Engineering All-Hands
10:25 PM – 1:08 AM
Microsoft Teams
Vesper admiratio subiungo admoneo vindico amet verbum perspiciatis aeger.
calendar-events / #63
10:25 PM – 1:08 AM
Microsoft Teams
Vesper admiratio subiungo admoneo vindico amet verbum perspiciatis aeger.
curl -sS \
"https://example-data.com/api/v1/calendar-events/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/63"
);
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/63"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/63"
)
calendar_event = res.json() {
"id": 63,
"ownerUserId": 29,
"title": "Engineering All-Hands",
"description": "Vesper admiratio subiungo admoneo vindico amet verbum perspiciatis aeger.",
"startAt": "2026-07-10T22:25:28.526Z",
"endAt": "2026-07-11T01:08:55.071Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
71,
142
],
"createdAt": "2026-03-19T02:29:50.763Z",
"updatedAt": "2026-05-03T02:00:33.265Z"
}