Show Verification

Show Verification

Retrieves all details for a specific document that has been uploaded to DOC Verify, including its verification status, associated users, and passport details. Use this endpoint to check the status and metadata of a previously uploaded document.


HTTP Method and URL

GET {{host}}/api/v2/verifications/:uuid?user_type=ENTERPRISE_API


Authentication Requirements

Requires a valid user token. Pass the token using the user-token variable (typically as a header or environment variable).


Path and Query Parameters

  • uuid (path): The unique identifier of the verification/document. Use the variable {{verification-uuid}}.

  • user_type (query): Must be set to ENTERPRISE_API.


Request Body

None. This is a GET request and does not require a body.


Example Request

GET {{host}}/api/v2/verifications/{{verification-uuid}}?user_type=ENTERPRISE_API
Headers:
  user-token: <your_token>

Example Successful Response

{
  "uuid": "7d472a3b-53d2-4db6-8bb2-930af72c7eb9",
  "status": "VERIFIED",
  "users": [
    { "id": "123", "name": "John Doe" }
  ],
  "passport_details": {
    "number": "A1234567",
    "country": "US"
  },
  ...
}

Error Responses

  • 404 Not Found: The specified verification UUID does not exist.

  • 401 Unauthorized: Authentication token is missing or invalid.

  • 400 Bad Request: Invalid parameters provided.


Usage Notes

  • Ensure the user-token is valid and has permission to access the requested verification.

  • The response includes all available details for the document, including status and user associations.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required
Query Params
string
Response

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here!