example-data.com

calendar-events / #56

Feb
25
Wed

Architecture Review

2:47 PM – 4:46 PM

Microsoft Teams

Convoco surgo carmen.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/56"
)
calendar_event = res.json()
{
  "id": 56,
  "ownerUserId": 26,
  "title": "Architecture Review",
  "description": "Convoco surgo carmen.",
  "startAt": "2026-02-25T14:47:23.518Z",
  "endAt": "2026-02-25T16:46:23.729Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-04-02T04:54:00.333Z",
  "updatedAt": "2026-04-04T15:36:38.329Z"
}
Draftbit