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

# List form submissions

> Lists form submissions with date and pagination filters.

`highlevel.listFormSubmissions` lists form submissions with date and pagination filters.

```ts automations/highlevel-list-form-submissions.automation.ts theme={null}
import { automation, markSignificant } from "automate.ax"
import { highlevel } from "automate.ax/highlevel"

export default automation("List form submissions", () => {
  markSignificant(highlevel.listFormSubmissions({}))
})
```

## Input

| Field     | Type     | Required | Description                         |
| --------- | -------- | -------- | ----------------------------------- |
| `page`    | `number` | No       | Page number. Defaults to `1`.       |
| `limit`   | `number` | No       | Results per page. Defaults to `20`. |
| `formId`  | `string` | No       | HighLevel form id value.            |
| `q`       | `string` | No       | HighLevel q value.                  |
| `startAt` | `string` | No       | HighLevel start at value.           |
| `endAt`   | `string` | No       | HighLevel end at value.             |

Automate.ax supplies the connected sub-account's location ID. Optional second argument `{ account }` selects a named HighLevel binding.

## Output

| Field         | Type       | Required | Description                  |
| ------------- | ---------- | -------- | ---------------------------- |
| `submissions` | `object[]` | No       | HighLevel submissions value. |
| `meta`        | `object`   | No       | HighLevel meta value.        |

This action calls `GET /forms/submissions` with HighLevel API version `2021-07-28` and requires `forms.readonly`. HighLevel validation and permission errors fail the action. Rate limits honor the provider's retry timing.
