example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #209

Jun
22
Mon

1:1 with Manager

6:11 AM – 12:20 PM

Depono vomito bonus sordeo beneficium eius audio sordeo cupressus vulgaris.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 209,
  "ownerUserId": 91,
  "title": "1:1 with Manager",
  "description": "Depono vomito bonus sordeo beneficium eius audio sordeo cupressus vulgaris.",
  "startAt": "2026-06-22T06:11:03.987Z",
  "endAt": "2026-06-22T12:20:05.745Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    144,
    67,
    222,
    3,
    65
  ],
  "createdAt": "2026-05-10T18:29:32.446Z",
  "updatedAt": "2026-05-15T10:24:39.119Z"
}