GET
/
customers
curl --request GET \
  --url https://api.sandbox.sardine.ai/v1/customers \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "sessionKey": "<string>",
    "level": "low",
    "status": "Success",
    "customer": {
      "score": 123,
      "level": "low",
      "signals": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ]
    },
    "transaction": {
      "level": "low",
      "amlLevel": "low",
      "indemnification": {
        "decision": "approved",
        "instantLimit": 123,
        "holdAmount": 123,
        "verificationCode": "<string>",
        "holdTime": "<string>"
      }
    }
  }
]

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

The response is of type object[].