Jun
16
Tue
1:1 with Manager
1:20 AM – 8:36 AM
Deprimo corrupti crur cultura concido.
calendar-events / #19
1:20 AM – 8:36 AM
Deprimo corrupti crur cultura concido.
curl -sS \
"https://example-data.com/api/v1/calendar-events/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/19"
);
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/19"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/19"
)
calendar_event = res.json() {
"id": 19,
"ownerUserId": 9,
"title": "1:1 with Manager",
"description": "Deprimo corrupti crur cultura concido.",
"startAt": "2026-06-16T01:20:19.437Z",
"endAt": "2026-06-16T08:36:02.483Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
178,
135
],
"createdAt": "2026-03-20T12:35:27.846Z",
"updatedAt": "2026-05-04T09:33:10.132Z"
}