May
6
Wed
Team Lunch
12:25 PM – 7:34 PM
Microsoft Teams
Sui stips doloremque blanditiis canto adipiscor voluptate adeo vilicus aperte.
calendar-events / #155
12:25 PM – 7:34 PM
Microsoft Teams
Sui stips doloremque blanditiis canto adipiscor voluptate adeo vilicus aperte.
curl -sS \
"https://example-data.com/api/v1/calendar-events/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/155"
);
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/155"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/155"
)
calendar_event = res.json() {
"id": 155,
"ownerUserId": 66,
"title": "Team Lunch",
"description": "Sui stips doloremque blanditiis canto adipiscor voluptate adeo vilicus aperte.",
"startAt": "2026-05-06T12:25:09.102Z",
"endAt": "2026-05-06T19:34:20.848Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
225
],
"createdAt": "2026-03-30T00:33:27.238Z",
"updatedAt": "2026-04-01T22:14:53.705Z"
}