Jul
26
Sun
1:1 with Manager
8:45 PM – 2:36 AM
Microsoft Teams
Pax uredo asporto constans.
calendar-events / #107
8:45 PM – 2:36 AM
Microsoft Teams
Pax uredo asporto constans.
curl -sS \
"https://example-data.com/api/v1/calendar-events/107" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/107"
);
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/107"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/107"
)
calendar_event = res.json() {
"id": 107,
"ownerUserId": 44,
"title": "1:1 with Manager",
"description": "Pax uredo asporto constans.",
"startAt": "2026-07-26T20:45:48.682Z",
"endAt": "2026-07-27T02:36:47.390Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-14T22:40:37.505Z",
"updatedAt": "2026-05-05T23:56:57.924Z"
}