example-data.com

calendar-events / #46

Apr
1
Wed

Strategy Workshop

10:05 PM – 10:05 PM

Conference Room A

Corrigo eveniet sulum defaeco thesaurus decens aspernatur vito templum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/46"
)
calendar_event = res.json()
{
  "id": 46,
  "ownerUserId": 23,
  "title": "Strategy Workshop",
  "description": "Corrigo eveniet sulum defaeco thesaurus decens aspernatur vito templum.",
  "startAt": "2026-04-01T22:05:53.159Z",
  "endAt": "2026-04-02T22:05:53.159Z",
  "isAllDay": true,
  "location": "Conference Room A",
  "attendeeUserIds": [
    146,
    124,
    73,
    89,
    150
  ],
  "createdAt": "2026-02-22T17:03:10.887Z",
  "updatedAt": "2026-03-16T04:08:41.731Z"
}
Draftbit