v1

latestOpenAPI 3.0.02026-07-22469.0 KB
Events

Get a single event by id for the authenticated organization

get/v1/events/{id}

Path parameters

idstring required

The event's public id (UUID).

Response

idstring required

Stable public identifier (UUID).

namestring required

Event name.

locationsstring[] required

Display location strings.

numPeoplenumber required

Expected attendee count.

statusstring required

Event status.

createdAtstring required

Creation timestamp (ISO 8601).

venueTypestring required

Venue type.

numHotelRoomsNeedednumber nullable

Estimated hotel rooms needed.

isMultiDayboolean nullable

Whether the event spans multiple days.

otherNotesstring nullable

Free-text notes about the event.

currencystring required

ISO 4217 currency code.

Example response

{
  "id": "3f1a2b4c-5d6e-7f80-9a1b-2c3d4e5f6071",
  "name": "Annual Conference 2026",
  "dates": [
    {
      "startDate": "2026-03-15",
      "endDate": "2026-03-17",
      "date": "2026-03-15"
    }
  ],
  "locations": [
    "Monterey, CA, USA"
  ],
  "numPeople": 120,
  "status": "wait_for_proposals",
  "createdAt": "2026-01-01T00:00:00.000Z",
  "venueType": "hotel",
  "numHotelRoomsNeeded": 50,
  "isMultiDay": true,
  "otherNotes": "Bring badges",
  "currency": "USD"
}