Skip to content

Get all visitors

Request

Get all visitors

Security
MuseumPlaceholderAuth
Query
startDatestring, (date)

Starting date to retrieve future operating hours from. Defaults to today's date.

Example:startDate=2023-02-23
endDatestring, (date)

End of a date range to retrieve special events for. Defaults to 7 days after startDate.

Example:endDate=2023-04-18
pageinteger

Page number to retrieve.

Default:1
Example:page=2
limitinteger, <= 30

Number of days per page.

Default:10
Example:limit=15
curl -i -X GET \
  -u '<username>:<password>' \
  'https://innovario.apishowdown.com/_mock/catalog/api-showdown/museum/v2/openapi/visitors?startDate=2023-02-23&endDate=2023-04-18&page=2&limit=15'

Responses

Success.

Bodyapplication/json
Array [
emailstringrequired

Email of the visitor

Example:"john.doe@innovario.com"
firstNamestringrequired

First name of visitor

Example:"John"
lastNamestringrequired

Last name of visitor

Example:"Doe"
]
Response
[ { "email": "john.doe@innovario.com", "firstName": "John", "lastName": "Doe" } ]