example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #256

Jul
1
Wed

1:1 with Manager

6:13 PM – 6:13 PM

Microsoft Teams

Vilitas audeo sit celer.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 256,
  "ownerUserId": 110,
  "title": "1:1 with Manager",
  "description": "Vilitas audeo sit celer.",
  "startAt": "2026-07-01T18:13:29.890Z",
  "endAt": "2026-07-02T18:13:29.890Z",
  "isAllDay": true,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    35,
    207,
    2,
    124
  ],
  "createdAt": "2026-03-17T04:10:13.448Z",
  "updatedAt": "2026-05-13T01:59:46.699Z"
}