example-data.com

calendar-events / #136

Jul
17
Fri

Onboarding Session

5:53 AM – 11:56 AM

Microsoft Teams

Adhuc uterque cito tibi similique termes.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/136"
)
calendar_event = res.json()
{
  "id": 136,
  "ownerUserId": 56,
  "title": "Onboarding Session",
  "description": "Adhuc uterque cito tibi similique termes.",
  "startAt": "2026-07-17T05:53:44.390Z",
  "endAt": "2026-07-17T11:56:12.436Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    209
  ],
  "createdAt": "2026-05-08T03:33:32.942Z",
  "updatedAt": "2026-05-16T12:02:37.220Z"
}
Draftbit