example-data.com

calendar-events / #124

May
4
Mon

Retrospective

7:42 PM – 12:11 AM

Error tego traho acer.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/124"
)
calendar_event = res.json()
{
  "id": 124,
  "ownerUserId": 52,
  "title": "Retrospective",
  "description": "Error tego traho acer.",
  "startAt": "2026-05-04T19:42:04.053Z",
  "endAt": "2026-05-05T00:11:43.415Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    179
  ],
  "createdAt": "2026-03-24T11:23:16.489Z",
  "updatedAt": "2026-05-12T08:00:56.472Z"
}
Draftbit