If you have developer resources available, integrate with the RESTful API to update fraud alerts automatically. API access allows you to programmatically interact with Equifax. To activate the Chargeback and Refund RESTful API, add the following code example in a POST to Kount 360 during the Authenticating with Kount 360 steps in the Payments Fraud Integration Guide.
service CommerceOrchestrator {
rpc UpdateChargebackRefund(UpdateChargebackRefundRequest) returns UpdateChargebackRefundResponse;
}
message UpdateChargebackRefundRequest {
string orderId = 1;
bool isChargeback = 2;
bool isRefund = 3;
optional string chargebackReasonCode = 4;
optional string cardType = 5;
}
message UpdateChargebackRefundResponse {
string error = 1;
}