Apr
21
Tue
Product Review
1:00 AM – 5:58 AM
Microsoft Teams
Nisi auxilium ullus tracto video cado creptio.
calendar-events / #181
1:00 AM – 5:58 AM
Microsoft Teams
Nisi auxilium ullus tracto video cado creptio.
curl -sS \
"https://example-data.com/api/v1/calendar-events/181" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/181"
);
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/181"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/181"
)
calendar_event = res.json() {
"id": 181,
"ownerUserId": 79,
"title": "Product Review",
"description": "Nisi auxilium ullus tracto video cado creptio.",
"startAt": "2026-04-21T01:00:15.264Z",
"endAt": "2026-04-21T05:58:32.304Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
237,
50,
174,
240
],
"createdAt": "2026-03-02T18:09:32.555Z",
"updatedAt": "2026-03-14T11:26:32.089Z"
}