KYC History

Endpoint to read a customer's KYC/AML history

Retrieve KYC/AML history

GET https://api.waldo.ai/history/kyc/:customerId

Request Body

FieldTypeDescription

customerId*

String

Waldo AI customer id

Headers

NameTypeDescription

Authorization*

String

The token in the format Bearer eyJhbG...

Content-Type*

String

Expected type is application/json

Response

{
    "active": {
        "date": 1724244780545,
        "outcome": "REVIEW",
        "documentType": "driving_licence",
        "issuingDate": "2018-08-16",
        "type": "document"
    },
    "history": [
        {
            "date": 1724144769269,
            "outcome": "PASSED",
            "type": "kyc"
        },
        {
            "date": 1724244780545,
            "outcome": "REVIEW",
            "documentType": "driving_licence",
            "issuingDate": "2018-08-16",
            "type": "document"
        }
    ]
}

Last updated