Labels API provided by Fraud Prevention allows you to give feedback about the accuracy of recommendations you received from Transmit Security.
Labels
Type of label to send, which contains additional information that helps to classify the subject as fraudulent or legitimate
Subject of the label
The subject type.
For FRAUD_RING_ID labels only. Allows labeling actions with specific recommendation.
The fraud scenario.
Source of the label information, such as a customer complaint about friction or additional information from another risk or fraud system.
| Enum Value | Description |
|---|---|
| MANUAL_REVIEW | from self manual analysis |
| CUSTOMER_COMPLAINTS | from customer complains or responses |
| CHARGEBACKS | from incorrect charges |
| OTHER_VENDORS | from information and conclusion done in other systems and tools |
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/risk/v1/label
- Production environment (US)https://api.transmitsecurity.io/risk/v1/label
- Production environment (EU)https://api.eu.transmitsecurity.io/risk/v1/label
- Production environment (CA)https://api.ca.transmitsecurity.io/risk/v1/label
- Production environment (AU)https://api.au.transmitsecurity.io/risk/v1/label
- cURL
- Node.js
- Go
- JavaScript
- Java
- Python
curl -i -X POST \
https://api.sbx.transmitsecurity.io/risk/v1/label \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"label_type": "KNOWN_MALICIOUS",
"subject": {
"type": "ACTION_ID",
"value": "a05f8ae1-718f-4c33-a20c-682df281af7c",
"recommendations": [
"allow"
],
"is_campaign_confirmed": true
},
"use_case": "ACCOUNT_TAKEOVER",
"source": "MANUAL_REVIEW"
}'Label has been received and stored successfully.
Type of label to send, which contains additional information that helps to classify the subject as fraudulent or legitimate
Subject of the label
The subject type.
The subject value
For FRAUD_RING_ID labels only. Allows labeling actions with specific recommendation.
The fraud scenario.
Source of the label information, such as a customer complaint about friction or additional information from another risk or fraud system.
| Enum Value | Description |
|---|---|
| MANUAL_REVIEW | from self manual analysis |
| CUSTOMER_COMPLAINTS | from customer complains or responses |
| CHARGEBACKS | from incorrect charges |
| OTHER_VENDORS | from information and conclusion done in other systems and tools |
{ "message": "string", "label_id": "string", "label": { "label_id": "string", "label_type": "KNOWN_MALICIOUS", "subject": { … }, "use_case": "ACCOUNT_TAKEOVER", "source": "MANUAL_REVIEW", "label_timestamp": 1725961384920 }, "afftectedActionIds": [ "af819f2b3e2f1b2820077cb09fe92de5769c4e4b24030cf683f4d0b155ac4999", "9b83568185c39e4acb3e5d09176f0a70efdf5c414c2d1d90cb803dfb0b93ec53" ] }