example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #353

May
11
Mon

1:1 with Manager

9:18 AM – 1:40 PM

Microsoft Teams

Adiuvo bestia comparo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 353,
  "ownerUserId": 144,
  "title": "1:1 with Manager",
  "description": "Adiuvo bestia comparo.",
  "startAt": "2026-05-11T09:18:52.161Z",
  "endAt": "2026-05-11T13:40:20.147Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    21,
    14,
    138,
    64,
    174
  ],
  "createdAt": "2026-05-07T02:18:19.226Z",
  "updatedAt": "2026-05-07T18:46:25.909Z"
}