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

> Lists one form's submissions through its site-scoped Webflow route.

`webflow.listSiteFormSubmissionsForForm` lists submissions for one form through Webflow's site-scoped API.

## Example

```ts automations/webflow-list-site-form-submissions-for-form.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.listSiteFormSubmissionsForForm({
    formId: "form-id",
    limit: 100,
    siteId: "site-id",
  })
})
```

## 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.                       |
| `formId` | `string` | Yes      | Webflow form ID.                       |
| `limit`  | `number` | No       | Page size from 1 through 100.          |
| `offset` | `number` | No       | Nonnegative number of records to skip. |

## Output

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