Represent a Score resource for each transaction
Beta testing phaseThis is not the final version of the product, and is still subject to change.
If you are interested in early access to this feature, please contact [email protected]!
A Score resource
{
"has_more": false,
"data": [
{
"id": "frs_ABCDEFGHIJ123456780",
"type": "fraud.score",
"livemode": true,
"score": 900,
"external_id": "ORD-20210818-001",
"external_attribute_name": "order_id",
"organization_id": "org_123456789",
"decision_reason": "high_risk",
"decision": "fraud",
"created_at": "2025-08-18T10:30:33Z",
"updated_at": null
},
{
"id": "frs_ABCDEFGHIJ123456781",
"type": "fraud.score",
"livemode": true,
"score": 100,
"external_id": "ORD-20210818-002",
"external_attribute_name": "order_id",
"organization_id": "org_123456789",
"decision_reason": "low_risk",
"decision": "legit",
"created_at": "2025-08-18T10:30:33Z",
"updated_at": null
}
]
}
Attribute | Type | Description |
---|---|---|
id | string | Unique ID of the score resource |
type | string | Resource type (fraud.score ) |
score | integer | Risk score (0–1000) |
external_id | string | Unique reference for the transaction in your system |
external_attribute_name | string | Name/type of the external ID (e.g., order_id , invoice_id ) |
organization_id | string | Organization that owns the score |
decision_reason | string | Reason for the assigned decision (high_risk , low_risk , etc.) |
decision | string | Final decision (fraud or legit ) |
livemode | boolean | Indicates if the score is for live or test mode |
created_at | string | Timestamp when the score was created (ISO8601) |
updated_at | string | Timestamp when the score was last updated |