Skip to main content
POST
/
evaluation_overrides
Create a risk evaluation override
curl --request POST \
  --url https://api.synctera.com/v2/evaluation_overrides \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": "5f4ff599-7c29-4f69-a3d9-e103e151afbd",
  "reason": "False positive - customer confirmed transaction is legitimate.",
  "account_id": "30044785-ddb0-4a51-be1c-402bd4ba2b2b",
  "active_at": "2024-01-01T00:00:00.000Z",
  "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",
  "type": "FRAUD"
}
'
{
  "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"
}

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.

Body

application/json

An evaluation override

customer_id
string<uuid>
required

The unique identifier for the related customer.

Example:

"5f4ff599-7c29-4f69-a3d9-e103e151afbd"

reason
string
required

The reason for the evaluation override.

Minimum string length: 3
Example:

"False positive - customer confirmed transaction is legitimate."

account_id
string<uuid>

The unique identifier for the related customer account.

Example:

"30044785-ddb0-4a51-be1c-402bd4ba2b2b"

active_at
string<date-time>

The date and time when the evaluation override became active.

Example:

"2024-01-01T00:00:00.000Z"

card_id
string<uuid>

The unique identifier for the related card.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

expires_at
string<date-time>

The date and time when the evaluation override expires.

Example:

"2024-12-31T23:59:59.000Z"

spend_control_id
string<uuid>

The unique identifier for the related spend control.

Example:

"b2c3d4e5-f6a7-8901-bcde-f12345678901"

transaction_id
string<uuid>

The unique identifier for the transaction.

Example:

"f387d971-d23b-4cc0-997a-7bc4f895fe9a"

type
enum<string>

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

Available options:
FRAUD,
SPEND_CONTROL

Response

The evaluation override response

active_at
string<date-time>
required

The date and time when the evaluation override became active.

Example:

"2024-01-01T00:00:00.000Z"

creation_time
string<date-time>
required
read-only

The date and time the evaluation was created.

Example:

"2010-05-06T12:23:34.321Z"

customer_id
string<uuid>
required

The unique identifier for the related customer.

Example:

"5f4ff599-7c29-4f69-a3d9-e103e151afbd"

id
string<uuid>
required
read-only

The unique identifier for the evaluation override.

Example:

"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d"

last_updated_time
string<date-time>
required
read-only

The date and time the evaluation was last updated.

Example:

"2010-05-06T12:23:34.321Z"

reason
string
required

The reason for the evaluation override.

Example:

"False positive - customer confirmed transaction is legitimate."

type
enum<string>
required

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

Available options:
FRAUD,
SPEND_CONTROL
account_id
string<uuid>

The unique identifier for the related customer account.

Example:

"30044785-ddb0-4a51-be1c-402bd4ba2b2b"

card_id
string<uuid>

The unique identifier for the related card.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

expires_at
string<date-time>

The date and time when the evaluation override expires.

Example:

"2024-12-31T23:59:59.000Z"

spend_control_id
string<uuid>

The unique identifier for the related spend control.

Example:

"b2c3d4e5-f6a7-8901-bcde-f12345678901"

transaction_id
string<uuid>

The unique identifier for the transaction.

Example:

"f387d971-d23b-4cc0-997a-7bc4f895fe9a"