example-data.com

calendar-events / #61

May
2
Sat

Strategy Workshop

10:11 AM – 1:34 PM

Microsoft Teams

Constans utroque amitto velociter verus compello tergeo umquam varius.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/61"
)
calendar_event = res.json()
{
  "id": 61,
  "ownerUserId": 29,
  "title": "Strategy Workshop",
  "description": "Constans utroque amitto velociter verus compello tergeo umquam varius.",
  "startAt": "2026-05-02T10:11:34.625Z",
  "endAt": "2026-05-02T13:34:06.482Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    85,
    73,
    95,
    21,
    151
  ],
  "createdAt": "2026-03-07T09:05:14.148Z",
  "updatedAt": "2026-05-17T08:44:20.325Z"
}
Draftbit