---
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
  - `isComplete` boolean
  - `jsonData` object
  - `metadata` string, nullable
  - `formId` integer
  - `formDefinitionId` integer
  - `currentPage` integer, nullable
  - `completedAt` string, date-time, nullable
  - `createdAt` string, date-time
  - `status` string

## Other responses

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

## Changes

- **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/fbc3fe6ecbf1/schema)
