Skip to main content
GET
/
evaluation_overrides
List risk evaluation overrides
curl --request GET \
  --url https://api.synctera.com/v2/evaluation_overrides \
  --header 'Authorization: Bearer <token>'
{
  "evaluation_overrides": [
    {
      "active_at": "2024-01-01T00:00:00.000Z",
      "creation_time": "2010-05-06T12:23:34.321Z",
      "customer_id": "5f4ff599-7c29-4f69-a3d9-e103e151afbd",
      "id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "reason": "False positive - customer confirmed transaction is legitimate.",
      "type": "FRAUD",
      "account_id": "30044785-ddb0-4a51-be1c-402bd4ba2b2b",
      "card_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "expires_at": "2024-12-31T23:59:59.000Z",
      "spend_control_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "transaction_id": "f387d971-d23b-4cc0-997a-7bc4f895fe9a"
    }
  ],
  "next_page_token": "a8937a0d"
}

Documentation Index

Fetch the complete documentation index at: https://docs.synctera.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

id
string<uuid>[]

Unique identifier for the evaluation override. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

account_id
string<uuid>[]

Unique identifier for the customer account. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

customer_id
string<uuid>[]

Unique identifier for the customer. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

transaction_id
string<uuid>[]

Unique identifier for the transaction. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

card_id
string<uuid>[]

Unique identifier for the card. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

spend_control_id
string<uuid>[]

Unique identifier for the spend control. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

type
enum<string>

Filter by the type of evaluation override. The type of evaluation override. Always present in responses; behavior and filtering depend on this field.

Available options:
FRAUD,
SPEND_CONTROL
reason
string

Filter by the reason for the evaluation override.

Example:

"manual_review"

sort_by
enum<string>[]

Specifies the sort order for the returned evaluation override list.

Available options:
active_at:asc,
active_at:desc,
expires_at:asc,
expires_at:desc,
creation_time:asc,
creation_time:desc,
last_updated_time:asc,
last_updated_time:desc
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"

Response

List of evaluation overrides.

evaluation_overrides
object[]
required

Array of evaluation overrides.

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"