---
title: "List Form Submissions"
method: GET
path: "/workspaces/{workspace_id}/form_submissions"
tags: ["FormSubmission"]
---

# List Form Submissions

`GET /workspaces/{workspace_id}/form_submissions`

List form submissions. This is a list of all form submissions for the workspace, including the submitted standard and custom fields. Please refer to the `Form` and `Forms::Submission` resources if you would like to submit forms programmatically.

## Path parameters

- `workspace_id` integer, required

## Query parameters

- `after` string
- `sort_order` 'asc' | 'desc'
- `sort_property` 'id' | 'updated_at'
- `filter` object
  - `id` string — A comma-separated list of form submission IDs to filter by.
  - `page_id` string — A comma-separated list of page IDs to filter by.
  - `contact_id` string — A comma-separated list of contact IDs to filter by.

## Response `200`

OK

- FormSubmissionAttributes[]
  - `id` integer — The unique identifier for the form submission
  - `public_id` string, nullable — The unique public identifier for the form submission
  - `contact_id` integer, nullable — The unique identifier of the contact who submitted the form
  - `workspace_id` integer — The unique identifier of the workspace that the form was part of
  - `page_id` integer, nullable — The unique identifier of the page that the form was on
  - `created_at` string, nullable — The date and time the form was submitted
  - `updated_at` string, nullable — The date and time the form submission was last updated
  - `data` object — The dynamic form field data submitted by the user. The HTML form input field names build the keys of this object, and the user's HTML inputs are the values.

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.dev/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.dev/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
