details // field to mention fees refund details. $amt = new Amount(); $amt->setCurrency('USD') ->setTotal('0.01'); // ### Refund object $refund = new Refund(); $refund->setAmount($amt); $saleId = '3RM92092UW5126232'; // ###Sale // A sale transaction. // Create a Sale object with the // given sale transaction id. $sale = new Sale(); $sale->setId($saleId); try { // Refund the sale // (See bootstrap.php for more on `ApiContext`) $sale->refund($refund, $apiContext); } catch (PayPal\Exception\PPConnectionException $ex) { echo "Exception:" . $ex->getMessage() . PHP_EOL; var_dump($ex->getData()); exit(1); } ?> Refund a sale
Refunding sale id:
toJSON(128);?>
Back