example-data.com

calendar-events / #10

Jun
14
Sun

Board Meeting

3:45 AM – 3:45 AM

Microsoft Teams

Maiores vado alveus adiuvo vomer tenuis cerno sodalitas calcar.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/10"
)
calendar_event = res.json()
{
  "id": 10,
  "ownerUserId": 4,
  "title": "Board Meeting",
  "description": "Maiores vado alveus adiuvo vomer tenuis cerno sodalitas calcar.",
  "startAt": "2026-06-14T03:45:04.127Z",
  "endAt": "2026-06-15T03:45:04.127Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    72
  ],
  "createdAt": "2026-05-14T20:46:08.269Z",
  "updatedAt": "2026-05-20T17:21:26.148Z"
}
Draftbit