GET /api/public/answer/
Get a list of answers.
Returns check-in answers for all users within the company.
Response is paginated, with a default page size of 50 objects.
Servers
- https://my.15five.com/
Query parameters
Name | Type | Required | Description |
---|---|---|---|
question_id |
Integer | No |
Include only answers for a question/questions with the specified ID. In order to query for answers for multiple questions, specify questions' ids as a list of parameters, eg.: ?question_id=1&question_id=2 |
page |
Integer | No |
Results page |
updated_after |
String | No |
Only include users with updated date greater than or equal to the value. |
created_on_start |
String | No |
Only include answers having creation date greater than or equal to the date time specified in the YYYY-MM-DD HH:MM:SS format. |
created_before |
String | No |
Only include users with creation date less than or equal to the value. |
created_on_end |
String | No |
Only include answers having creation date less than or equal to the date time specified in the YYYY-MM-DD HH:MM:SS format. |
created_after |
String | No |
Only include users with creation date greater than or equal to the value. |
updated_before |
String | No |
Only include users with updated date less than or equal to the value. |
user_id |
Integer | No |
Include only answers given by a user or users with the specified ID. In order to query for answers given by multiple users, specify users' ids as a list of parameters, eg.: ?user_id=1&user_id=2 |
order_by |
String | No |
Available sorting fields (id, user, question, create_ts), defaults to "create_ts". Add a "-" before the field name to reverse the order e.g. "-create_ts". |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.