---
title: "Update a form submission by access token"
method: PATCH
path: "/api/forms/{formId}/submissions/by-access-token/{token}"
tags: ["Forms"]
---

# Update a form submission by access token

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

Updates a form submission using a short-lived access token

## Path parameters

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

## Request body

- PartialUpdateByAccessTokenRequest — Request to partially update submission using access token.
  - `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 `200`

The form submission was updated successfully

- PartialUpdateSubmissionByTokenResponse — Response model for partially updating a form submission by token.
  - `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` — Bad request or invalid token/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/patch.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)
