example-data.com

calendar-events / #139

Apr
21
Tue

Strategy Workshop

9:43 AM – 2:38 PM

Quia villa decimus tamen demulceo theologus dens tredecim.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/139"
)
calendar_event = res.json()
{
  "id": 139,
  "ownerUserId": 58,
  "title": "Strategy Workshop",
  "description": "Quia villa decimus tamen demulceo theologus dens tredecim.",
  "startAt": "2026-04-21T09:43:10.551Z",
  "endAt": "2026-04-21T14:38:28.796Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    19,
    145
  ],
  "createdAt": "2026-03-17T19:04:04.854Z",
  "updatedAt": "2026-03-19T10:31:24.996Z"
}
Draftbit