You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Returns form responses and date and time of form landing and submission.
204
+
-`uid`: Unique ID for the form.
205
+
-`pageSize`: Maximum number of responses. Default value is 25. Maximum value is 1000.
206
+
-`since`: Limit request to responses submitted since the specified date and time. In ISO 8601 format, UTC time, to the second, with T as a delimiter between the date and time.
207
+
-`until`: Limit request to responses submitted until the specified date and time. In ISO 8601 format, UTC time, to the second, with T as a delimiter between the date and time.
208
+
-`after`: Limit request to responses submitted after the specified token. If you use the `after` parameter, the responses will be sorted in the order that our system processed them (instead of the default order, `submitted_at`).
209
+
-`before`: Limit request to responses submitted before the specified token. If you use the `before` parameter, the responses will be sorted in the order that our system processed them (instead of the default order, `submitted_at`).
210
+
-`ids`: Limit request to the specified ids. Accepts either a string or an array of strings.
211
+
-`completed`: `true` if form was submitted. Otherwise, `false`.
212
+
-`sort`: Order of responses. Currently, responses are automatically sorted by `submitted_at,desc`---the date they were submitted, from newest to oldest. We plan to add more options for sort order soon.
213
+
-`query`: Limit request to only responses that that include the specified string. You can specify any string as the `query` value. The string will be escaped, and the query will include Hidden Fields.
214
+
-`fields`: Limit request to only responses for the specified fields. Accepts either a string or an array of strings.
204
215
- For parameter details check [the documentation](https://developer.typeform.com/responses/reference/retrieve-responses/)
0 commit comments