example-data.com

calendar-events / #226

Apr
4
Sat

Strategy Workshop

10:41 AM – 10:41 AM

Google Meet

Auditor vobis tondeo ducimus sumo magnam aggredior utilis tui commodo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/226"
)
calendar_event = res.json()
{
  "id": 226,
  "ownerUserId": 96,
  "title": "Strategy Workshop",
  "description": "Auditor vobis tondeo ducimus sumo magnam aggredior utilis tui commodo.",
  "startAt": "2026-04-04T10:41:18.669Z",
  "endAt": "2026-04-05T10:41:18.669Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    111
  ],
  "createdAt": "2026-05-09T16:39:18.786Z",
  "updatedAt": "2026-05-16T06:56:42.827Z"
}
Draftbit