> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Form Responses

List a form's responses.

<Note>
  External Documentation

  To learn more, visit the [Google Forms documentation](https://developers.google.com/forms/api/reference/rest/v1/forms.responses/list).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                  |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Fields           | A comma-separated list of the selected fields to return for an object in the response.<br />Format: responses.responseId,responses.answers.                  |
  | Filter           | Which form responses to return.                                                                                                                              |
  | Form ID          | ID of the Form whose responses to list. Can be obtained from the URL while editing the form.                                                                 |
  | Page Size        | The maximum number of responses to return. The service may return fewer than this value. If unspecified or zero, at most 5000 responses are returned.        |
  | Page Token       | A page token returned by a previous list response. If this field is set, the form and the values of the filter must be the same as for the original request. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                             |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                                                                                                                                                                                                                                                  |
  | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Delegated User Override | Perform the action on behalf of another user, overriding the delegated user defined in the connection.<br /><br />If not specified, the delegated user is the one provided in the connection.<br /><br />Has no effect when using an OAuth connection.<br /><br />NOTE: the connection details are not edited by this input. |
</div>

## Example Output

```json theme={"dark"}
{
	"responses": [
		{
			"responseId": "<string>",
			"createTime": "2023-09-07T13:13:26",
			"lastSubmittedTime": "2020-08-23T10:20:12",
			"answers": {
				"1488e269": {
					"questionId": "<string>",
					"textAnswers": {
						"answers": [
							{
								"value": "<string>"
							}
						]
					}
				}
			}
		}
	]
}
```

## Workflow Library Example

[List Form Responses with Google Forms and Send Results Via Email](https://library.blinkops.com/workflows/list-form-responses-with-google-forms-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-form-responses-with-google-forms-and-send-results-via-email/canvas" />
</div>
