> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/013_forms/017__list_form_submissions.md).

# List Form Submissions

GraphQL endpoint: `/company`

Lists submitted form instances for one of the current company's forms, cursor-paginated. Only submissions with a SUBMITTED status are included.

## Query

```graphql
query ($formId: ID!, $limit: Int, $cursor: String) {
  formSubmissions(formId: $formId, limit: $limit, cursor: $cursor) {
    paginationInfo {
      limit
      nextCursor
    }
    records {
      id
      status
      data
      identifiers
      formVersion {
        id
        version
      }
      updatedAt
    }
  }
}

```

## Variables

```json
{
  "formId": "00000000-0000-4000-8000-000000000004"
}
```

## Response

```json
{
  "data": {
    "formSubmissions": {
      "paginationInfo": {
        "limit": 20,
        "nextCursor": null
      },
      "records": [
        {
          "data": {
            "name": "Bob"
          },
          "formVersion": {
            "id": "00000000-0000-4000-8000-000000000001",
            "version": 1
          },
          "id": "00000000-0000-4000-8000-000000000002",
          "identifiers": [],
          "status": "SUBMITTED",
          "updatedAt": "2026-01-15T09:00:00"
        },
        {
          "data": {
            "name": "Alice"
          },
          "formVersion": {
            "id": "00000000-0000-4000-8000-000000000001",
            "version": 1
          },
          "id": "00000000-0000-4000-8000-000000000003",
          "identifiers": [
            "Alice"
          ],
          "status": "SUBMITTED",
          "updatedAt": "2026-01-15T09:00:00"
        }
      ]
    }
  }
}
```
