Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.lensmor.com/llms.txt

Use this file to discover all available pages before exploring further.

Personnel related events

List events related to a single person.

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, max 100.

Response body

Top-level fields

FieldTypeNotes
itemsobject[]Same event summary shape as GET /external/events/list items[].
totalintegerTotal distinct associated events.
pageintegerCurrent page number.
pageSizeintegerPage size used for this response.
totalPagesinteger0 when total is 0.
hasMorebooleantrue when another page exists.

Response example

{
  "items": [
    {
      "id": "123",
      "eventId": "139574",
      "name": "Shoptalk",
      "nickname": null,
      "description": null,
      "url": "https://example.com",
      "dateStart": "2026-03-25",
      "dateEnd": "2026-03-28",
      "venue": "Convention Center",
      "city": "Las Vegas",
      "region": "Nevada",
      "country": "United States",
      "exhibitorCount": 250,
      "image": null
    }
  ],
  "total": 1,
  "page": 1,
  "pageSize": 20,
  "totalPages": 1,
  "hasMore": false
}

Error responses

  • 400 Bad Request when personnel_id is not a valid numeric string.
  • 401 Unauthorized when the API key is missing, malformed, or invalid.
  • 404 Not Found when the personnel row cannot be resolved.

Notes

  • If the personnel row exists but has no exhibitor associations, the route returns an empty paginated success response instead of 404.