example-data.com

calendar-events / #67

Mar
14
Sat

1:1 with Manager

7:38 PM – 9:42 PM

Conference Room A

Cernuus argentum similique territo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/67"
)
calendar_event = res.json()
{
  "id": 67,
  "ownerUserId": 30,
  "title": "1:1 with Manager",
  "description": "Cernuus argentum similique territo.",
  "startAt": "2026-03-14T19:38:32.026Z",
  "endAt": "2026-03-14T21:42:47.086Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    152
  ],
  "createdAt": "2026-02-28T06:40:00.471Z",
  "updatedAt": "2026-03-12T05:23:53.640Z"
}
Draftbit