GET
/
customers
curl --request GET \
  --url https://api.sandbox.sardine.ai/v1/customers \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "sessionKey": "280CBF35-B4B0-4193-A111",
    "level": "low",
    "status": "Success",
    "customer": {
      "score": 26,
      "level": "low",
      "signals": [
        {
          "key": "bankLevel",
          "value": "low"
        },
        {
          "key": "emailDomainLevel",
          "value": "low"
        },
        {
          "key": "emailLevel",
          "value": "low",
          "reasonCodes": [
            "HST"
          ]
        }
      ]
    },
    "transaction": {
      "level": "low",
      "amlLevel": "low",
      "indemnification": {
        "decision": "approved",
        "instantLimit": 1000,
        "holdAmount": 0,
        "verificationCode": "string",
        "holdTime": "1628169754124"
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

customer_id
string

ID of Customer

Response

200 - application/json
OK
sessionKey
string
Minimum length: 1
level
enum<string>

This is the ONLY field that a merchant needs to use to make decision on fraud. This field is set by our rules and the main rule is the rule using our "customer score" model.

Available options:
low,
medium,
high,
very_high
status
enum<string>
Available options:
Success,
Failure
customer
object
transaction
object