example-data.com

calendar-events / #198

Jun
2
Tue

Hiring Interview

1:43 PM – 3:13 PM

Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/198"
)
calendar_event = res.json()
{
  "id": 198,
  "ownerUserId": 86,
  "title": "Hiring Interview",
  "description": "Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.",
  "startAt": "2026-06-02T13:43:00.873Z",
  "endAt": "2026-06-02T15:13:08.591Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    242
  ],
  "createdAt": "2026-05-21T15:39:10.529Z",
  "updatedAt": "2026-05-21T19:05:09.079Z"
}
Draftbit