example-data.com

calendar-events / #137

Mar
28
Sat

Team Lunch

11:32 AM – 11:32 AM

Office - Floor 3

Nam tabgo causa testimonium aegre ver alienus inventore cuppedia totam.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/137"
)
calendar_event = res.json()
{
  "id": 137,
  "ownerUserId": 57,
  "title": "Team Lunch",
  "description": "Nam tabgo causa testimonium aegre ver alienus inventore cuppedia totam.",
  "startAt": "2026-03-28T11:32:28.416Z",
  "endAt": "2026-03-29T11:32:28.416Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    49,
    35,
    39,
    109,
    155
  ],
  "createdAt": "2026-03-16T20:35:38.502Z",
  "updatedAt": "2026-03-17T09:31:46.384Z"
}
Draftbit