---
title: "Get Submission Details"
method: GET
path: "/coe/v1/submissions"
---

# Get Submission Details

`GET /coe/v1/submissions`

Retrieves the face verification results for a given session and submission ID.

## Headers

- `x-onekyc-token` string, required
- `x-partner-session-id` string
- `x-submission-id` string

## Response `200`

Success - Returns verification status and details

- object
  - `success` boolean — Will be true if the face verification results can be fetched
  - `data` object — Object containing the face verification result for given session id and user
    - `status` 'COMPLETED' | 'ERROR' | 'IN_PROGRESS' — Status of the submission
    - `submissionId` string
    - `flow` string — For face verification flow the flow value should be FACE_VERIFICATION
    - `partnerSessionId` string
    - `result` 'VALID' | 'INVALID' — Result of the document validation. INVALID if verification fails
    - `reasonCode` string — Helps in identifying the error during Face Verification (e.g., DOCUMENT_NOT_FOUND, NOT_LIVE, FACE_MATCH_FAILED)
    - `processedAt` string — Timestamp string when the submission is processed
    - `submissionDetails` object
      - `imageUrls` object
        - `selfie` string
      - `verificationResults` object
        - `faceMatch` object
          - `score` number
          - `result` boolean
          - `version` string
        - `liveness` object
          - `result` boolean
          - `version` string
        - `referenceImageValidation` object
          - `ktp` object
            - `verificationResult` boolean
            - `verificationReasonCode` string

## Other responses

- `400` — Bad Request - Missing headers, submission not found, or session mismatch
- `401` — Unauthorized - Incorrect client credentials
- `403` — Forbidden - Access denied
- `500` — Internal Server Error - Unknown backend error

---

[API](https://skmtc.net/midtrans/apis/snap-api.md) · [All operations](https://skmtc.net/midtrans/apis/snap-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midtrans/snap-api/versions/67e029cf926a/schema)
