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

# Get submission using access token

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

Retrieves submission data using a short-lived access token

## Path parameters

- `formId` integer, required
- `token` string, required

## Response `200`

Submission retrieved successfully

- SubmissionDetailsModel
  - `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
  - `formDefinition` FormDefinitionModel — Model of a form definition.
    - `id` string, nullable — The ID of the form definition.
    - `isDraft` boolean — Indicates if the form definition is a draft.
    - `jsonData` string, nullable — The JSON data of the form definition.
    - `formId` string, nullable — The ID of the associated form.
    - `createdAt` string, date-time — The date and time when the form definition was created.
    - `modifiedAt` string, date-time, nullable — The date and time when the form definition was last modified.
    - `themeModel` string, nullable — The model of the associated theme stored as a stringified JSON object.
    - `customQuestions` string[], nullable — The list of custom questions' JSON data associated with this form definition.
    - `requiresReCaptcha` boolean, nullable — Indicates if reCAPTCHA is enabled for this form definition.

## Other responses

- `400` — Invalid token or permissions

## Changes

- **2026-02-06** `a99906323223` — 1 info
  - endpoint added
- **2025-03-24** `fbc3fe6ecbf1` — 1 breaking
  - api path removed without deprecation

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