example-data.com

calendar-events / #209

Jun
22
Mon

1:1 with Manager

6:11 AM – 12:20 PM

Depono vomito bonus sordeo beneficium eius audio sordeo cupressus vulgaris.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/209"
)
calendar_event = res.json()
{
  "id": 209,
  "ownerUserId": 91,
  "title": "1:1 with Manager",
  "description": "Depono vomito bonus sordeo beneficium eius audio sordeo cupressus vulgaris.",
  "startAt": "2026-06-22T06:11:03.987Z",
  "endAt": "2026-06-22T12:20:05.745Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    144,
    67,
    222,
    3,
    65
  ],
  "createdAt": "2026-05-10T18:29:32.446Z",
  "updatedAt": "2026-05-15T10:24:39.119Z"
}
Draftbit