Total refund
Overview
Use the issueRefund method to issue a total refund for an order processed by 2Checkout.
Requirements
The payment for the refundable order needs to be collected.
You cannot issue a refund for an amount higher than the total order amount.
Request
require ('PATH_TO_AUTH'); // authentication call
$orderReference = "72711777";
$amount = 26.00;
$items = ""; // empty for total refunds
$comment = "We hope you are satisfied with the refund process.";
$reason = "Duplicate purchase";
try {
$refundedOrder = $client->issueRefund($sessionID, $orderReference, $amount, $items, $comment, $reason);
}
catch (SoapFault $e) {
echo "refundedOrder: " . $e->getMessage();
exit;
}
var_dump("refundedOrder", $refundedOrder);
Response
Response | Type/Description |
---|---|
Boolean |
TRUE is the refund was processed successfully FALSE otherwise |