---
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

## Changes

- **2025-11-21** `50eff5014b78` — 1 breaking, 1 info
  - removed the media type `application/problem+json` for the response with the status `400`
  - added the optional property `items/submittedBy` to the response with the `200` status
- **2025-03-24** `fbc3fe6ecbf1` — 1 warning, 1 info
  - removed the optional property `items/submittedBy` from the response with the `200` status
  - added the media type `application/problem+json` for the response with the status `400`

[Change history](https://skmtc.dev/endatix/apis/endatix-platform-rest-api/changes/api/forms/:formId/submissions/get.md)

---

[API](https://skmtc.dev/endatix/apis/endatix-platform-rest-api.md) · [All operations](https://skmtc.dev/endatix/apis/endatix-platform-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/endatix/endatix-platform-rest-api/revisions/01bd299fd100/schema)
