example-data.com

calendar-events / #149

May
13
Wed

Customer Interview

10:28 AM – 5:52 PM

Office - Floor 3

Tantillus ceno voveo vehemens adstringo capitulus creta beneficium.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/149"
)
calendar_event = res.json()
{
  "id": 149,
  "ownerUserId": 64,
  "title": "Customer Interview",
  "description": "Tantillus ceno voveo vehemens adstringo capitulus creta beneficium.",
  "startAt": "2026-05-13T10:28:31.850Z",
  "endAt": "2026-05-13T17:52:35.279Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    195,
    140,
    49,
    47,
    43
  ],
  "createdAt": "2026-03-01T00:18:54.726Z",
  "updatedAt": "2026-05-03T09:28:08.608Z"
}
Draftbit