Jul
24
Fri
Customer Interview
11:02 AM – 6:42 PM
Microsoft Teams
Facere repellendus voveo demonstro desino occaecati laborum clementia territo coniuratio.
calendar-events / #185
11:02 AM – 6:42 PM
Microsoft Teams
Facere repellendus voveo demonstro desino occaecati laborum clementia territo coniuratio.
curl -sS \
"https://example-data.com/api/v1/calendar-events/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/185"
);
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/185"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/185"
)
calendar_event = res.json() {
"id": 185,
"ownerUserId": 81,
"title": "Customer Interview",
"description": "Facere repellendus voveo demonstro desino occaecati laborum clementia territo coniuratio.",
"startAt": "2026-07-24T11:02:13.701Z",
"endAt": "2026-07-24T18:42:55.419Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
106,
194
],
"createdAt": "2026-04-13T13:57:59.202Z",
"updatedAt": "2026-05-21T14:27:47.491Z"
}