example-data.com

calendar-events / #68

Jun
14
Sun

1:1 with Manager

12:14 AM – 4:21 AM

Appositus armarium advoco curo cohibeo cur cruciamentum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/68"
)
calendar_event = res.json()
{
  "id": 68,
  "ownerUserId": 31,
  "title": "1:1 with Manager",
  "description": "Appositus armarium advoco curo cohibeo cur cruciamentum.",
  "startAt": "2026-06-14T00:14:07.241Z",
  "endAt": "2026-06-14T04:21:23.462Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    129
  ],
  "createdAt": "2026-05-04T10:15:23.157Z",
  "updatedAt": "2026-05-09T05:01:40.747Z"
}
Draftbit