Developer Guide

Feedback Payment

Allows merchants to report the final payment status back to the system, helping improve fraud detection and risk assessment.

SIGN UP NOW

Request

POST  https://api.fraudlabspro.com/v2/payment/feedback
Parameter Description
key (required) API license key.
email (required) Email address of the payment order.
status (required) Status of the payment order.
message (required) Message returned from the payment gateway for the payment order.
fraudlabspro_id (optional) Unique transaction Id generated by Fraud Check API.

Response

Parameter Description
result The result return from the payment feedback API.

Sample Codes

Sample Code
curl https://api.fraudlabspro.com/v2/payment/feedback \
--header 'Content-Type: application/json' \
--data '{
	"key": "Enter_License_Key",
	"email": "hh5566@gmail.com",
	"status": "declined",
	"message": "Call Issuer. Pick Up Card. (2047)",
	"fraudlabspro_id": "20260131-O263CR"
}'