Skip to main content
GET
/
crr
List CRRs
curl --request GET \
  --url https://api.synctera.com/v2/crr
{
  "risk_scores": [
    {
      "id": "7503cd8a-903b-4fee-aa54-da3dc71f4124",
      "risk_level": "LOW",
      "risk_score": 37,
      "tenant": "abcdef_ghijkl",
      "business_id": "06a644f6-2623-4dd2-b2cd-da8a8667515e",
      "calculations_breakdown": [
        {
          "parameter_score": 46.42,
          "parameter_weight": 25,
          "condition": {
            "type": "CATEGORICAL",
            "weight": 75,
            "lower": 0,
            "upper": 150000,
            "value": "<string>"
          },
          "parameter_label": "Customer Country",
          "parameter_name": "CIP"
        }
      ],
      "creator_id": "53869fb3-c58e-4a49-badb-7b273a7bdd34",
      "customer_id": "272878fe-355f-4308-8d1d-4c7d43d698f6",
      "note": "Customer was found on a watchlist. Setting the risk score to 80",
      "valid_from": "2023-01-05T11:23:34.321Z",
      "valid_to": "2024-01-05T11:23:34.321Z"
    }
  ],
  "next_page_token": "a8937a0d"
}

Query Parameters

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

customer_id
string<uuid>

The unique identifier of a customer.

Example:

"b01db9c7-78f2-4a99-8aca-1231d32f9b96"

business_id
string<uuid>

ID of the business that the risk score applies to

Example:

"edebece0-4a06-4806-b062-7de25a848be8"

include_history
boolean
default:false

If true, include old risk scores in the response

Response

List of CRR for customers, or businesses

risk_scores
object[]
required

Array of risk scores

next_page_token
string

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example:

"a8937a0d"