example-data.com

calendar-events / #16

Jun
12
Fri

1:1 with Manager

1:54 AM – 1:54 AM

Conference Room B

Virga vapulus dolorem cupiditate esse illum ventito fugit vehemens.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/16"
)
calendar_event = res.json()
{
  "id": 16,
  "ownerUserId": 7,
  "title": "1:1 with Manager",
  "description": "Virga vapulus dolorem cupiditate esse illum ventito fugit vehemens.",
  "startAt": "2026-06-12T01:54:28.393Z",
  "endAt": "2026-06-13T01:54:28.393Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    209
  ],
  "createdAt": "2026-03-19T03:09:13.226Z",
  "updatedAt": "2026-04-14T12:21:46.545Z"
}
Draftbit