example-data.com

calendar-events / #120

Aug
11
Tue

Sales Call

11:15 PM – 5:17 AM

Microsoft Teams

Acidus contabesco ventosus tamen inventore atavus adipisci cribro comptus abstergo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/120"
)
calendar_event = res.json()
{
  "id": 120,
  "ownerUserId": 51,
  "title": "Sales Call",
  "description": "Acidus contabesco ventosus tamen inventore atavus adipisci cribro comptus abstergo.",
  "startAt": "2026-08-11T23:15:05.961Z",
  "endAt": "2026-08-12T05:17:19.699Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-05-01T15:22:38.121Z",
  "updatedAt": "2026-05-18T01:14:29.343Z"
}
Draftbit