example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #19

Jun
16
Tue

1:1 with Manager

1:20 AM – 8:36 AM

Deprimo corrupti crur cultura concido.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 19,
  "ownerUserId": 9,
  "title": "1:1 with Manager",
  "description": "Deprimo corrupti crur cultura concido.",
  "startAt": "2026-06-16T01:20:19.437Z",
  "endAt": "2026-06-16T08:36:02.483Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    178,
    135
  ],
  "createdAt": "2026-03-20T12:35:27.846Z",
  "updatedAt": "2026-05-04T09:33:10.132Z"
}