Developer Guide
Feedback User
Update status of a transaction from pending-manual-review to APPROVE, REJECT or REJECT_BLACKLIST. The FraudLabs Pro algorithm will improve the formula in determine the user score using the data collected.
SIGN UP NOWRequest
POST https://api.fraudlabspro.com/v2/user/feedback
| Parameter | Type | Description |
|---|---|---|
| key | string | (required) API license key. |
| id | string | (required) Unique User Screen ID generated by Screen User API. |
| action | string | (required) Perform APPROVE, REJECT, or REJECT_BLACKLIST action to transaction.
|
| reason | string | (required) Reasons for the feedback request. |
| format | string | (optional) Return the result in json or xml format. Default:json Valid values: json | xml |
Response
| Parameter | Type | Description |
|---|---|---|
| user_transaction_id | string | The User Transaction ID that was updated. |
Sample Codes
Sample Code
curl https://api.fraudlabspro.com/v2/order/feedback \
--header 'Content-Type: application/json' \
--data '{
"key": "Enter_License_Key",
"format": "json",
"id": "20260131-DEF3CR",
"action": "APPROVE",
"reason": "Testing purpose"
}'