---
title: "Create a new submission"
method: POST
path: "/api/forms/{formId}/submissions"
tags: ["Forms"]
---

# Create a new submission

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

Creates a new form submission

## Path parameters

- `formId` integer, required

## Request body

- CreateSubmissionRequest — Request payload to be used with Create endpoint
  - `isComplete` boolean, nullable — Boolean flag to indicate if a submission is complete. Optional
  - `currentPage` integer, nullable — Current page if the form has multiple pages. Optional
  - `jsonData` string, nullable — Stringified form submission data
  - `metadata` string, nullable — Stringified metadata related to the form submission
  - `reCaptchaToken` string, nullable — reCAPTCHA v3 token for bot protection

## Response `201`

Created

- CreateSubmissionResponse
  - `id` string
  - `isComplete` boolean
  - `jsonData` string
  - `formId` string
  - `formDefinitionId` string
  - `currentPage` integer, nullable
  - `metadata` string, nullable
  - `token` string, nullable
  - `completedAt` string, date-time, nullable
  - `createdAt` string, date-time
  - `modifiedAt` string, date-time, nullable
  - `status` string
  - `submittedBy` string, nullable

## Other responses

- `400` — Invalid input data.

## Changes

- **2026-02-06** `a99906323223` — 1 breaking, 1 warning
  - added `#/components/schemas/BasePublicSubmissionRequest` to the request body `allOf` list
  - removed `#/components/schemas/BaseSubmissionRequest` from the request body `allOf` list
- **2025-11-21** `50eff5014b78` — 2 breaking, 4 warning, 2 info
  - added `#/components/schemas/BaseSubmissionRequest, subschema #2` to the request body `allOf` list
  - the request's body type/format changed from `object`/`` to ``/``
  - removed the request property `currentPage`
  - removed the request property `isComplete`
  - …4 more
- **2025-03-24** `fbc3fe6ecbf1` — 2 breaking, 2 warning, 4 info
  - added the new required request property `jsonData`
  - the request's body type/format changed from ``/`` to `object`/``
  - removed `#/components/schemas/BasePublicSubmissionRequest, subschema #2` from the request body `allOf` list
  - removed the optional property `allOf[#/components/schemas/SubmissionModel]/submittedBy` from the response with the `201` status
  - …4 more

[Change history](https://skmtc.dev/endatix/apis/endatix-platform-rest-api/changes/api/forms/:formId/submissions/post.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)
