example-data.com

calendar-events / #154

Mar
29
Sun

Budget Review

8:54 AM – 10:57 AM

Microsoft Teams

Commodo corrumpo vestigium validus surgo bardus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/154"
)
calendar_event = res.json()
{
  "id": 154,
  "ownerUserId": 66,
  "title": "Budget Review",
  "description": "Commodo corrumpo vestigium validus surgo bardus.",
  "startAt": "2026-03-29T08:54:38.085Z",
  "endAt": "2026-03-29T10:57:44.954Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    179,
    123,
    199
  ],
  "createdAt": "2026-03-21T16:23:29.693Z",
  "updatedAt": "2026-05-21T19:20:07.053Z"
}
Draftbit