> ## 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 site form submissions

> Lists submissions across every form in one Webflow site.

`webflow.listSiteFormSubmissions` lists submissions across every form in a site.

## Example

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

export default automation("List site form submissions", () => {
  onDashboardRun({ title: "List site form submissions" })
  webflow.listSiteFormSubmissions({ siteId: "site-id", limit: 100 })
})
```

## Inputs

Every input accepts a compatible signal. This action requires the `forms:read` OAuth scope.

| Field       | Type     | Required | Description                            |
| ----------- | -------- | -------- | -------------------------------------- |
| `siteId`    | `string` | Yes      | Webflow site ID.                       |
| `elementId` | `string` | No       | Restricts results to one form element. |
| `limit`     | `number` | No       | Page size from 1 through 100.          |
| `offset`    | `number` | No       | Nonnegative number of records to skip. |

Use `listWebflowSiteFormSubmissionsForForm` when you already know the form ID.

## Output

| Field             | Type                       | Description                        |
| ----------------- | -------------------------- | ---------------------------------- |
| `formSubmissions` | `Webflow.FormSubmission[]` | Submitted form records.            |
| `pagination`      | `Webflow.Pagination`       | Resolved limit, offset, and total. |
