example-data.com

calendar-events / #111

Feb
24
Tue

Sales Call

6:16 PM – 6:16 PM

Delinquo careo alii laboriosam curis.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/111"
)
calendar_event = res.json()
{
  "id": 111,
  "ownerUserId": 47,
  "title": "Sales Call",
  "description": "Delinquo careo alii laboriosam curis.",
  "startAt": "2026-02-24T18:16:21.584Z",
  "endAt": "2026-02-25T18:16:21.584Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [
    69,
    215,
    84,
    74
  ],
  "createdAt": "2026-03-23T06:00:14.212Z",
  "updatedAt": "2026-04-16T15:21:52.912Z"
}
Draftbit