example-data.com

calendar-events / #165

Apr
26
Sun

Sales Call

3:20 AM – 10:18 AM

Main Boardroom

Voluptatem subnecto basium appono caveo torqueo appositus casso tres doloremque.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/165"
)
calendar_event = res.json()
{
  "id": 165,
  "ownerUserId": 70,
  "title": "Sales Call",
  "description": "Voluptatem subnecto basium appono caveo torqueo appositus casso tres doloremque.",
  "startAt": "2026-04-26T03:20:21.022Z",
  "endAt": "2026-04-26T10:18:17.504Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    225,
    177,
    209,
    166,
    149
  ],
  "createdAt": "2026-04-15T05:30:49.609Z",
  "updatedAt": "2026-05-19T23:10:50.253Z"
}
Draftbit