example-data.com

calendar-events / #88

Jun
17
Wed

Onboarding Session

8:00 PM – 10:38 PM

Google Meet

Virtus patria volva caute.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/88"
)
calendar_event = res.json()
{
  "id": 88,
  "ownerUserId": 37,
  "title": "Onboarding Session",
  "description": "Virtus patria volva caute.",
  "startAt": "2026-06-17T20:00:44.207Z",
  "endAt": "2026-06-17T22:38:12.024Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    58
  ],
  "createdAt": "2026-05-17T19:27:14.139Z",
  "updatedAt": "2026-05-17T19:50:22.499Z"
}
Draftbit