example-data.com

calendar-events / #51

Jun
12
Fri

Onboarding Session

8:03 PM – 3:17 AM

Main Boardroom

Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/51"
)
calendar_event = res.json()
{
  "id": 51,
  "ownerUserId": 25,
  "title": "Onboarding Session",
  "description": "Praesentium approbo sustineo molestiae ultra benevolentia coadunatio.",
  "startAt": "2026-06-12T20:03:17.336Z",
  "endAt": "2026-06-13T03:17:42.021Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    140
  ],
  "createdAt": "2026-04-05T01:59:27.871Z",
  "updatedAt": "2026-04-27T09:02:05.766Z"
}
Draftbit