Skip to main content
GET
/
customers
/
{id}
/
verifications
Read a verification
curl --request GET \
  --url https://api.lumx.io/customers/{id}/verifications \
  --header 'Authorization: Bearer <token>'
{
  "customerId": "c85cb5ef-0574-4450-806d-195944f1e309",
  "status": "NOT_STARTED",
  "level": "STANDARD",
  "statusReason": {
    "rejectLabels": [
      "screenshot",
      "unsatisfactory_photos"
    ],
    "rejectSubLabels": [
      "proofOfAddress_listOfDocs",
      "badPhoto"
    ],
    "documents": [
      {
        "type": "PASSPORT",
        "status": "TEMPORARY_REJECTION",
        "comment": "Screenshots aren't accepted. Please upload a live photo of the document.",
        "rejectLabels": [
          "screenshot",
          "unsatisfactory_photos"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header on the format Bearer <API_KEY>.

Path Parameters

id
string<uuid>
required

Customer's unique identifier.

Response

200 - application/json

Resource successfully retrieved.

customerId
string<uuid>

Customer's unique identifier.

status
enum<string>

Customer verification's status.

Available options:
NOT_STARTED,
UNDER_VERIFICATION,
APPROVED,
TEMPORARY_REJECTION,
FINAL_REJECTION
Example:

"NOT_STARTED"

level
enum<string>

Customer verification's level.

Available options:
STANDARD
Example:

"STANDARD"

statusReason
object

Customer verification's status reason.