example-data.com

calendar-events / #77

Mar
31
Tue

Retrospective

11:54 AM – 7:49 PM

Conference Room A

Velit perferendis patria.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/77"
)
calendar_event = res.json()
{
  "id": 77,
  "ownerUserId": 34,
  "title": "Retrospective",
  "description": "Velit perferendis patria.",
  "startAt": "2026-03-31T11:54:16.170Z",
  "endAt": "2026-03-31T19:49:45.393Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    27
  ],
  "createdAt": "2026-05-17T17:47:24.847Z",
  "updatedAt": "2026-05-17T19:15:54.336Z"
}
Draftbit