example-data.com

calendar-events / #65

Aug
2
Sun

Sales Call

12:37 PM – 6:19 PM

Rooftop

Mollitia defero deludo umquam abscido thymbra vehemens cultellus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/65"
)
calendar_event = res.json()
{
  "id": 65,
  "ownerUserId": 30,
  "title": "Sales Call",
  "description": "Mollitia defero deludo umquam abscido thymbra vehemens cultellus.",
  "startAt": "2026-08-02T12:37:50.011Z",
  "endAt": "2026-08-02T18:19:23.908Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    206,
    46
  ],
  "createdAt": "2026-03-29T12:27:06.680Z",
  "updatedAt": "2026-05-04T07:43:22.533Z"
}
Draftbit