For the complete documentation index, see llms.txt. This page is also available as Markdown.

Verifications

The following endpoints are used to insert and retrieve entries representing verifications (of an identity's documents) from the database.

GET /verifications/:id
GET /verifications

The verification object

The verification object represents the result of a document's check by a KYC partner.

A verification is identified by a unique, random id and relates to a user's identityId.

{
    "id": "3519322a-6881-472f-8e1f-2486d5f3cb15",
    "identityId": "e0564926-96e0-42e2-a544-68bc18598e40",
    "status": "pending",
    "exceptionDetails": "",
    "createdAt": "2020-01-09T10:21:05.760Z",
    "updatedAt": "2020-01-15T13:12:21.860Z"
}

GET /verifications/:id

GET https://api.publicmint.com/verifications/:id

This endpoint retrieves a specific verification by its unique id attribute.

Path Parameters

Name
Type
Description

id

string

Id of the verification

Request

GET /verifications

GET https://api.publicmint.com/verifications

This endpoint returns a list of all verifications associated with you. This endpoint supports pagination.

Example Call

Last updated