example-data.com

calendar-events / #231

Mar
3
Tue

Onboarding Session

4:16 PM – 12:10 AM

Rooftop

Sordeo volup illum custodia atrocitas tero aufero audio abscido.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/231"
)
calendar_event = res.json()
{
  "id": 231,
  "ownerUserId": 98,
  "title": "Onboarding Session",
  "description": "Sordeo volup illum custodia atrocitas tero aufero audio abscido.",
  "startAt": "2026-03-03T16:16:40.046Z",
  "endAt": "2026-03-04T00:10:49.610Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    60,
    99,
    90,
    219
  ],
  "createdAt": "2026-02-27T15:21:25.681Z",
  "updatedAt": "2026-05-19T15:39:25.922Z"
}
Draftbit