May
20
Wed
1:1 with Manager
12:10 AM – 12:10 AM
Microsoft Teams
Candidus patior combibo curatio temeritas aperiam vacuus sursum vociferor.
Overview
calendar-events / #341
12:10 AM – 12:10 AM
Microsoft Teams
Candidus patior combibo curatio temeritas aperiam vacuus sursum vociferor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/341" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/341"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/341"
)
calendar_event = res.json() Response
{
"id": 341,
"ownerUserId": 141,
"title": "1:1 with Manager",
"description": "Candidus patior combibo curatio temeritas aperiam vacuus sursum vociferor.",
"startAt": "2026-05-20T00:10:00.023Z",
"endAt": "2026-05-21T00:10:00.023Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
9,
37,
140,
73
],
"createdAt": "2026-04-03T10:59:56.341Z",
"updatedAt": "2026-04-25T22:04:49.084Z"
}