> ## 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.

# New Form Response

Triggers a workflow on every new form response.

**Endpoint**: `https://forms.googleapis.com/v1/forms/{formId}/responses`

<Note>
  Workflows with this trigger check for new events **every 5 minutes by default**. You can adjust this interval in the Trigger settings.
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                  |
  | --------- | -------------------------------------------------------------------------------------------- |
  | Form ID   | ID of the Form whose responses to list. Can be obtained from the URL while editing the form. |
</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>

## Sample Event

```json theme={"dark"}
{
	"formId": "1Fzv11yQ7er4Oam9uG3DGQO_IkG5e5ezIKBw34s0WZS4",
	"responseId": "AC11BNj6YRIHhn4FeGIDOJGHJd1ZIHczQu5KZJZLQPZ1VnYu5-qgCF9ns-ihRBsbVmShMyk",
	"createTime": "2024-03-07T11:52:41.551Z",
	"lastSubmittedTime": "2024-03-07T11:52:41.551844Z",
	"answers": {
		"6ac2904d": {
			"questionId": "6ac2904d",
			"textAnswers": {
				"answers": [
					{
						"value": "a response"
					}
				]
			}
		}
	}
}
```
