---
title: "Get a form submission by ID"
method: GET
path: "/forms/submissions/{id}"
tags: ["Form Submissions"]
---

# Get a form submission by ID

`GET /forms/submissions/{id}`

Retrieves a single form submission by its unique ID. The response includes organizationId (from tenant), flattened data fields, and standard form submission metadata. Requires tenant-id header and valid JWT.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string, required

## Response `200`

Form submission found. Returns the form submission with organizationId and flattened data.

- FormSubmissionResponseDto — Form submission response
  - `id` string — The unique identifier for the form submission
  - `organizationId` string — The unique identifier for the client organization within Certify
  - `mappedData` unknown
  - `submissionData` unknown
  - `submissionPdf` unknown
  - `submittedBy` FormSubmissionSubmittedByResponse — Information about who submitted the form
    - `email` string — The email of the user who submitted the form
    - `user` unknown
  - `form` unknown
  - `formVersionId` string — The id of the version of the form used for this submission
  - `createdAt` string — The date and time when the form submission was created
  - `createdBy` string — The identifier of the user or system that created the submission
  - `updatedAt` string — The date and time when the form submission was last updated

## Other responses

- `401` — Unauthorized: valid JWT is required.
- `403` — Forbidden: insufficient permissions.
- `404` — Not found: no form submission exists for the given ID within the tenant.
- `500` — Internal server error: unexpected failure while fetching the form submission.

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/3d27e9019c7b/schema)
