Fraud Feedback (Issuing)
The Fraud Feedback API may be used to confirm whether an issuing transaction was authorized or not authorized by the cardholder. A transaction confirmed to be authorized will allow Airwallex to better understand the cardholder's transaction patterns and increase the success rate of similar transactions. A transaction confirmed not to have been authorized by the cardholder will be labelled as fraudulent and the card will be blocked.
Please note all future transactions on a blocked card will be blocked. If you require a card to be unblocked please contact support.
Frozen cards may be unfrozen via the update a Card API.
POST /api/v1/risk/issuing/fraud_feedback
Fraud feedback (Issuing)
POST /api/v1/risk/issuing/fraud_feedback
Create a confirmation on whether a transaction was authorized by the cardholder.
The cardholder authorization status. Use AUTHORIZED_BY_CARDHOLDER, NOT_AUTHORIZED_BY_CARDHOLDER.
Card id for the authorization.
User Response to authorization.
| Error status | Description |
|---|---|
| 400 | Possible errors: |
| 401 | Unauthorized |
| 403 | Possible errors: |
| 404 | Possible errors: |
| 500 | Possible errors: |
$curl --request POST \> --url 'https://api-demo.airwallex.com/api/v1/risk/issuing/fraud_feedback' \> --header 'Authorization: Bearer {{ACCESS_TOKEN}}' \> --header 'Content-Type: application/json' \> --data '{> "authorization_id": "authorization_id",> "cardholder_decision": "AUTHORIZED_BY_CARDHOLDER">}'
1{2 "authorization_id": "authorization_id",3 "card_id": "card_id",4 "cardholder_decision": "AUTHORIZED_BY_CARDHOLDER"5}