example-data.com

calendar-events / #40

Jul
17
Fri

1:1 with Manager

12:51 AM – 3:46 AM

Microsoft Teams

Veritas surgo illo cupio tempore sunt.

Component variants

curl -sS \
  "https://example-data.com/api/v1/calendar-events/40" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/40"
);
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/40"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/40"
)
calendar_event = res.json()
{
  "id": 40,
  "ownerUserId": 21,
  "title": "1:1 with Manager",
  "description": "Veritas surgo illo cupio tempore sunt.",
  "startAt": "2026-07-17T00:51:56.826Z",
  "endAt": "2026-07-17T03:46:44.281Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    19,
    174,
    96
  ],
  "createdAt": "2026-05-18T17:12:15.993Z",
  "updatedAt": "2026-05-20T04:35:47.497Z"
}
Draftbit