example-data.com

calendar-events / #54

May
25
Mon

1:1 with Manager

5:01 PM – 7:39 PM

Correptius alii crinis architecto eaque.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/54"
)
calendar_event = res.json()
{
  "id": 54,
  "ownerUserId": 26,
  "title": "1:1 with Manager",
  "description": "Correptius alii crinis architecto eaque.",
  "startAt": "2026-05-25T17:01:38.417Z",
  "endAt": "2026-05-25T19:39:11.636Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-05-18T01:52:48.703Z",
  "updatedAt": "2026-05-21T22:49:02.508Z"
}
Draftbit