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

Fraud History

Endpoint to read a customer's fraud history

Retrieve fraud history

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

Path Parameters

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": 1724152019860,
    "score": 0.9
  },
  "history": [
    {
      "date": 1724152019860,
      "score": 0.9
    }
  ]
}
{
  "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."
}

The query should include the following parameters: customerId

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

Last updated