---
title: "Get a list of Submissions for a given form"
method: GET
path: "/api/forms/{formId}/submissions"
tags: ["Forms"]
---

# Get a list of Submissions for a given form

`GET /api/forms/{formId}/submissions`

Returns all submissions for a form given formId. Includes all Form Definitions as well as complete and non-complete responses

## Path parameters

- `formId` integer, required

## Query parameters

- `page` integer, nullable
- `pageSize` integer, nullable
- `filter` string[], nullable

## Response `200`

List of form Submissions

- SubmissionDto[]
  - `id` integer — The unique identifier of the submission.
  - `isComplete` boolean — Indicates if the submission is complete.
  - `jsonData` object — A dictionary containing JSON data related to the submission.
  - `metadata` string, nullable — Additional metadata related to the submission.
  - `formId` integer — The unique identifier of the form associated with the submission.
  - `formDefinitionId` integer — The unique identifier of the form definition associated with the submission.
  - `currentPage` integer, nullable — The current page of the submission, if applicable.
  - `completedAt` string, date-time, nullable — The date and time when the submission was completed, if applicable.
  - `createdAt` string, date-time — The date and time when the submission was created.
  - `status` string — The status of the submission.
  - `submittedBy` string, nullable — The unique identifier of the user who created the submission, if applicable.

## Other responses

- `400` — Invalid input data.
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Form not found. Pass correct formId

---

[API](https://skmtc.net/endatix/apis/endatix-platform-rest-api.md) · [All operations](https://skmtc.net/endatix/apis/endatix-platform-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/endatix/endatix-platform-rest-api/versions/849553bde436/schema)
