example-data.com

calendar-events / #91

May
31
Sun

1:1 with Manager

12:53 AM – 5:56 AM

Office - Floor 3

Decipio vivo tutamen teneo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/91"
)
calendar_event = res.json()
{
  "id": 91,
  "ownerUserId": 38,
  "title": "1:1 with Manager",
  "description": "Decipio vivo tutamen teneo.",
  "startAt": "2026-05-31T00:53:15.673Z",
  "endAt": "2026-05-31T05:56:37.680Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    170,
    72,
    79,
    34
  ],
  "createdAt": "2026-03-03T15:03:08.073Z",
  "updatedAt": "2026-03-25T21:22:03.974Z"
}
Draftbit