example-data.com

calendar-events / #177

Aug
8
Sat

1:1 with Manager

4:50 AM – 6:41 AM

Office - Floor 3

Aeternus aeger aegrus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/177"
)
calendar_event = res.json()
{
  "id": 177,
  "ownerUserId": 78,
  "title": "1:1 with Manager",
  "description": "Aeternus aeger aegrus.",
  "startAt": "2026-08-08T04:50:38.406Z",
  "endAt": "2026-08-08T06:41:29.861Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    173
  ],
  "createdAt": "2026-03-13T13:10:55.613Z",
  "updatedAt": "2026-03-20T23:13:33.610Z"
}
Draftbit