example-data.com

calendar-events / #121

Mar
4
Wed

Off-site Planning

3:14 AM – 9:42 AM

Zoom

Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/121"
)
calendar_event = res.json()
{
  "id": 121,
  "ownerUserId": 52,
  "title": "Off-site Planning",
  "description": "Uterque provident arca nam vulgo quisquam commodo artificiose caelestis.",
  "startAt": "2026-03-04T03:14:50.461Z",
  "endAt": "2026-03-04T09:42:41.155Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    82
  ],
  "createdAt": "2026-05-17T22:42:48.359Z",
  "updatedAt": "2026-05-21T15:49:31.213Z"
}
Draftbit