example-data.com

calendar-events / #222

Jul
4
Sat

1:1 with Manager

1:09 PM – 2:33 PM

Rooftop

Earum substantia administratio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/222"
)
calendar_event = res.json()
{
  "id": 222,
  "ownerUserId": 95,
  "title": "1:1 with Manager",
  "description": "Earum substantia administratio.",
  "startAt": "2026-07-04T13:09:31.954Z",
  "endAt": "2026-07-04T14:33:08.807Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    151,
    152
  ],
  "createdAt": "2026-05-19T03:52:16.290Z",
  "updatedAt": "2026-05-21T22:23:26.679Z"
}
Draftbit