example-data.com

calendar-events / #234

Jun
17
Wed

Sprint Planning

12:01 PM – 7:28 PM

Clementia depono catena desolo sodalitas.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/234"
)
calendar_event = res.json()
{
  "id": 234,
  "ownerUserId": 99,
  "title": "Sprint Planning",
  "description": "Clementia depono catena desolo sodalitas.",
  "startAt": "2026-06-17T12:01:08.072Z",
  "endAt": "2026-06-17T19:28:04.932Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    135,
    75,
    166,
    244,
    210
  ],
  "createdAt": "2026-05-04T18:53:02.914Z",
  "updatedAt": "2026-05-14T10:33:01.045Z"
}
Draftbit