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

> Update a Google Form's respondent-facing title or description.

`updateForm` patches form metadata without changing items or settings.

## Example

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

export default automation("Refresh form copy", () => {
  onHttpRequest({ scope: "automation" })

  updateForm({
    form: "form-id",
    title: "2026 launch feedback",
    description: "Responses close Friday",
  })
})
```

## Inputs

`form` is required. Provide `title`, `description`, or both; an empty description
clears it. `requiredRevisionId` and `account` are optional.

## Output

Returns the complete updated `Form`. This does not change the Drive document
title, which Google Forms stores separately.
