Responses resource
The Pickzen API lets you do the following with the Responses resource.
Responses
GET
https://admin.pickzen.com/api/responses
Retrieve all user responses.
Query Parameters
assistant
string
Assistant code.
useId
string
User session execution ID.
limit
integer
The maximum number of results to show on a page. (default: 50, maximum: 250)
since_id
integer
Show results after the specified ID. It is used to paginate results.
created_at_min
string
Show results created at or after date. (format: 2019-04-25T16:15-06:00).
created_at_max
string
Show results created at or before date. (format: 2019-04-25T16:15-04:00
Headers
X-Pickzen-Access-Token
string
API access token.
GET
https://admin.pickzen.com/api/responses
Query Parameters
token
string
API access token.
GET
https://admin.pickzen.com/api/responses
Query Parameters
token
string
API access token.
As there is a maximum limit of 250 results per page, in order to retrieve the next page you will need to make additional requests using the last since_id parameter retrieved. This way, the query will return the results after this last id.
This endpoint is supposed to be called using the createdAtMin and/or since_id parameter so only new entries from the last batched load are returned avoiding fetching all entries over and over.
Last updated