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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Update form settings

> Update Google Forms quiz and email-collection behavior.

`updateFormSettings` changes selected behavioral settings.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { updateFormSettings } from "automate.ax/google-forms"

export default automation("Turn intake into a quiz", () => {
  onHttpRequest({ scope: "automation" })

  updateFormSettings({
    form: "form-id",
    settings: { isQuiz: true, emailCollection: "verified" },
  })
})
```

## Inputs

`form` and `settings` are required. `settings` must provide `isQuiz`,
`emailCollection` (`none`, `verified`, or `respondentInput`), or both.
`requiredRevisionId` and `account` are optional.

## Output

Returns the complete updated `Form`. `verified` uses the signed-in identity;
`respondentInput` asks the respondent to enter an address. Provider restrictions
can apply to quizzes and existing question grading.
