List responses
Typeform List Responses is an advanced tool that enables users to retrieve detailed form responses including timestamps for form landing and submission. It simplifies data management by providing flexible filtering options to access specific subsets of responses from your Typeform surveys.
Features
- Retrieve form responses along with landing and submission date and time.
- Filter responses by date range using 'since' and 'until' parameters.
- Include or exclude specific response IDs for tailored data retrieval.
- Limit results to completed responses and customize response order with sorting options.
- Filter responses based on query strings and specific fields answered.
Benefits
- Gain comprehensive insights into survey data with timestamp accuracy.
- Save time by retrieving only relevant responses through advanced filters.
- Improve data analysis by focusing on specific form submissions or fields.
- Enhance reporting with customizable sorting and selective field display.
- Integrate seamlessly with other tools using flexible API parameters.
Description
Returns form responses and date and time of form landing and submission. See the docs here
IMPORTANT: The arguments have specific formats. Please follow the instructions below:
- includedResponseIds: Return JSON in this format: string[]
- excludedResponseIds: Return JSON in this format: string[]
- fields: Return JSON in this format: string[]
- answeredFields: Return JSON in this format: string[]
Parameters
13 parameters
| Name | Type | Description |
|---|---|---|
| formIdrequired | string | Unique ID for the form, which you can find in your form URL. For example, in the URL, |
| pageSize | integer | Maximum number of responses. Maximum value is 1000. If your typeform has more than 1000 responses, use the |
| since | string | Limit request to responses submitted since the specified date and time. Could be passed as int (timestamp in seconds) or in ISO 8601 format, UTC time, to the second, with |
| until | string | Limit request to responses submitted until the specified date and time. Could be passed as int (timestamp in seconds) or in ISO 8601 format, UTC time, to the second, with |
| after | string | Limit request to responses submitted after the specified token. Could not be used together with |
| before | string | Limit request to responses submitted before the specified token. Could not be used together with |
| includedResponseIds | string[] | Limit request to the specified |
| excludedResponseIds | string[] | Comma-separated list of |
| completed | boolean | Limit responses only to those which were submitted. This parameter changes |
| sort | string | Responses order in |
| query | string | Limit request to only responses that include the specified string. The string will be escaped and it will be matched against all answers fields, hidden fields and variables values. |
| fields | string[] | Show only specified fields in answers section. If response does not have answers for specified fields, there will be |
| answeredFields | string[] | Limit request to only responses that include the specified fields in answers section. Use a comma-separated list to specify more than one field value - response will contain at least one of the specified fields. |