---
title: "Get a single submission by token"
method: GET
path: "/api/forms/{formId}/submissions/by-token/{submissionToken}"
tags: ["Forms"]
---

# Get a single submission by token

`GET /api/forms/{formId}/submissions/by-token/{submissionToken}`

Gets a single submission based on its token and its respective formId

## Path parameters

- `formId` integer, required
- `submissionToken` string, required

## Response `200`

The Submission was retrieved successfully

- SubmissionModel
  - `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.
- `404` — Form submission not found

## Changes

- **2025-11-21** `50eff5014b78` — 1 breaking, 3 warning, 6 info
  - media type `application/problem+json` was changed to a more general media type `application/json` for the response status `400`
  - removed the optional property `errors` from the response with the `400` status
  - removed the optional property `message` from the response with the `400` status
  - removed the optional property `statusCode` from the response with the `400` status
  - …6 more
- **2025-03-24** `fbc3fe6ecbf1` — 6 warning, 4 info
  - removed the optional property `detail` from the response with the `400` status
  - removed the optional property `instance` from the response with the `400` status
  - removed the optional property `status` from the response with the `400` status
  - removed the optional property `submittedBy` from the response with the `200` status
  - …6 more

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