example-data.com

calendar-events / #71

Aug
13
Thu

Retrospective

4:27 AM – 10:45 AM

Cafeteria

Quis barba audax thema tabgo delego cornu civis conspergo totus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/71"
)
calendar_event = res.json()
{
  "id": 71,
  "ownerUserId": 32,
  "title": "Retrospective",
  "description": "Quis barba audax thema tabgo delego cornu civis conspergo totus.",
  "startAt": "2026-08-13T04:27:00.492Z",
  "endAt": "2026-08-13T10:45:33.405Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    26,
    215
  ],
  "createdAt": "2026-04-02T11:28:56.348Z",
  "updatedAt": "2026-04-14T10:51:44.800Z"
}
Draftbit