Fraud History

Endpoint to read a customer's fraud history

Retrieve fraud history

GET https://api.waldo.ai/history/fraud/: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": 1724152019860,
    "score": 0.9
  },
  "history": [
    {
      "date": 1724152019860,
      "score": 0.9
    }
  ]
}

Last updated