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

# Move item

> Move a Google Forms item to a new display position.

`moveItem` reorders one item without replacing its content.

## Example

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

export default automation("Move consent first", () => {
  onHttpRequest({ scope: "automation" })

  moveItem({ form: "form-id", itemReference: "consent-item-id", position: 1 })
})
```

## Inputs

`form`, `itemReference` (ID or current one-based position), and new one-based
`position` are required. `requiredRevisionId` and `account` are optional.

## Output

Returns the complete reordered `Form`. Use item IDs when moving more than one
item because positions change after each operation.
