Feb
22
Sun
Team Lunch
4:44 PM – 4:44 PM
Main Boardroom
Vesper pariatur spero pauper vicissitudo acquiro decens at adeptio.
calendar-events / #187
4:44 PM – 4:44 PM
Main Boardroom
Vesper pariatur spero pauper vicissitudo acquiro decens at adeptio.
curl -sS \
"https://example-data.com/api/v1/calendar-events/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/187"
);
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/187"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/187"
)
calendar_event = res.json() {
"id": 187,
"ownerUserId": 82,
"title": "Team Lunch",
"description": "Vesper pariatur spero pauper vicissitudo acquiro decens at adeptio.",
"startAt": "2026-02-22T16:44:50.877Z",
"endAt": "2026-02-23T16:44:50.877Z",
"isAllDay": true,
"location": "Main Boardroom",
"attendeeUserIds": [
221,
23
],
"createdAt": "2026-02-25T12:35:14.787Z",
"updatedAt": "2026-04-08T04:36:06.567Z"
}