Apr
14
Tue
1:1 with Manager
12:06 AM – 5:04 AM
Google Meet
Coaegresco victus minima repudiandae antea.
calendar-events / #219
12:06 AM – 5:04 AM
Google Meet
Coaegresco victus minima repudiandae antea.
curl -sS \
"https://example-data.com/api/v1/calendar-events/219" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/219"
);
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/219"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/219"
)
calendar_event = res.json() {
"id": 219,
"ownerUserId": 94,
"title": "1:1 with Manager",
"description": "Coaegresco victus minima repudiandae antea.",
"startAt": "2026-04-14T00:06:26.490Z",
"endAt": "2026-04-14T05:04:21.755Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
36
],
"createdAt": "2026-05-08T12:58:54.593Z",
"updatedAt": "2026-05-13T07:15:17.681Z"
}