example-data.com

calendar-events / #89

Jun
4
Thu

Off-site Planning

7:39 AM – 12:52 PM

Office - Floor 3

Aspicio deporto cribro cito tam absorbeo comparo surculus tamisium illum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/89"
)
calendar_event = res.json()
{
  "id": 89,
  "ownerUserId": 37,
  "title": "Off-site Planning",
  "description": "Aspicio deporto cribro cito tam absorbeo comparo surculus tamisium illum.",
  "startAt": "2026-06-04T07:39:42.897Z",
  "endAt": "2026-06-04T12:52:34.003Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    84,
    217,
    158
  ],
  "createdAt": "2026-05-13T18:17:16.301Z",
  "updatedAt": "2026-05-15T19:55:24.899Z"
}
Draftbit