example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #131

Jun
12
Fri

Onboarding Session

12:36 AM – 12:36 AM

Microsoft Teams

Deinde combibo textor aufero claro.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/131"
);
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/131"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

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

Response

{
  "id": 131,
  "ownerUserId": 55,
  "title": "Onboarding Session",
  "description": "Deinde combibo textor aufero claro.",
  "startAt": "2026-06-12T00:36:46.758Z",
  "endAt": "2026-06-13T00:36:46.758Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    52,
    59,
    80,
    179,
    217
  ],
  "createdAt": "2026-04-24T02:08:24.023Z",
  "updatedAt": "2026-04-29T05:15:12.072Z"
}