example-data.com

calendar-events / #229

Jun
11
Thu

Board Meeting

7:33 PM – 9:02 PM

Rooftop

Amor desolo attero sono curiositas vester callide cubicularis cilicium.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/229"
)
calendar_event = res.json()
{
  "id": 229,
  "ownerUserId": 98,
  "title": "Board Meeting",
  "description": "Amor desolo attero sono curiositas vester callide cubicularis cilicium.",
  "startAt": "2026-06-11T19:33:24.085Z",
  "endAt": "2026-06-11T21:02:52.760Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    120,
    48,
    52,
    201,
    169
  ],
  "createdAt": "2026-03-17T18:17:24.156Z",
  "updatedAt": "2026-03-31T06:31:33.763Z"
}
Draftbit