example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #401

Jun
22
Mon

Architecture Review

1:05 PM – 6:06 PM

Microsoft Teams

Thymbra error laudantium vito alius tonsor curia tamquam.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/calendar-events/401" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/401"
);
const calendarEvent = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/401"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/401"
)
calendar_event = res.json()

Response

{
  "id": 401,
  "ownerUserId": 165,
  "title": "Architecture Review",
  "description": "Thymbra error laudantium vito alius tonsor curia tamquam.",
  "startAt": "2026-06-22T13:05:05.426Z",
  "endAt": "2026-06-22T18:06:52.453Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-03-05T10:55:09.841Z",
  "updatedAt": "2026-05-08T23:04:15.036Z"
}