Skip to main content

Personnel related events

List events related to a single person. Use this endpoint when you want the event associations for one personnel profile in a paginated event-item response.

Endpoint

GET /external/personnel/events

Authentication

See Authentication

Success status code

200 OK

Query parameters

NameRequiredTypeNotes
personnel_idYesstringNumeric-string personnel identifier.
pageNointegerDefaults to 1.
pageSizeNointegerDefaults to 20; maximum 100.

Response example

{
  "items": [
    {
      "id": "123",
      "eventId": "139574",
      "name": "NRF 2026",
      "nickname": null,
      "description": "Retail industry event",
      "url": "https://example.com/events/nrf-2026",
      "dateStart": "2026-01-12",
      "dateEnd": "2026-01-15",
      "venue": "Javits Center",
      "city": "New York",
      "region": "NY",
      "country": "United States",
      "exhibitorCount": 950,
      "image": null,
      "dataSource": "database"
    }
  ],
  "total": 5,
  "page": 1,
  "pageSize": 20,
  "totalPages": 1,
  "hasMore": false
}

Error responses

  • 400 Bad Request
  • 401 Unauthorized
  • 404 Not Found

Notes

  • Event items reuse the shared public event-item shape.
  • Pagination behavior follows the shared Pagination conventions.
  • If the personnel row exists but has no exhibitor associations, the API returns an empty paginated success response rather than 404 Not Found.