Waldo AI Docs
Dashboard
  • Meet Waldo AI
  • Quick Start
  • Getting Started
  • Guides
    • Authentication process
  • Features
    • Overview
    • Onboarding
    • Fraud Evaluation
    • Express KYC
    • Document Upload
    • Deep Background Check
    • Webhooks
    • Sandbox
  • API Reference
    • Authentication
    • Customer Onboarding
    • KYC History
    • Get Customer
    • Document Upload
    • Check Fraud
    • Fraud History
    • Flag Customer
  • General Information
    • Data Sources
Powered by GitBook
On this page
  1. API Reference

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

Field
Type
Description

customerId*

String

Waldo AI customer id

Headers

Name
Type
Description

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"
        }
    ]
}
{
  "code": "NOT_AUTHORIZED",
  "message": "Not authorized."
}
{
  "code": "INVALID_TOKEN",
  "message": "Invalid token."
}
{
  "code": "NOT_AUTHORIZED",
  "message": "You are not authorized to perform this action. Please contact support for assistance."
}
{
  "code": "API_KEY_REVOKED",
  "message": "This API key has been revoked. Please visit the Waldo AI dashboard to review your API key."
}

The query should include the following parameters: customerId

{
  "code": "INVALID_DATA",
  "message": "Invalid customer ID."
}

Customer was not found, or has not been evaluated yet.

{
  "code": "NOT_FOUND",
  "message": "KYC history not found."
}
PreviousCustomer OnboardingNextGet Customer

Last updated 9 months ago