![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/paypal/rest-api-sdk-php/sample/payments/ |
<?php // # VoidAuthorization // This sample code demonstrates how you can // void an authorized payment. // API used: /v1/payments/authorization/<{authorizationid}>/void" /** @var Authorization $authorization */ $authorization = require 'AuthorizePayment.php'; // Replace $authorizationid with any static Id you might already have. It will do a void on it $authorizationId = '1BF65516U6866543H'; // $authorization->getId(); use PayPal\Api\Authorization; // ### VoidAuthorization // You can void a previously authorized payment // by invoking the $authorization->void method // with a valid ApiContext (See bootstrap.php for more on `ApiContext`) try { // Lookup the authorization $authorization = Authorization::get($authorizationId, $apiContext); // Void the authorization $voidedAuth = $authorization->void($apiContext); } catch (Exception $ex) { // NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY ResultPrinter::printError("Void Authorization", "Authorization", null, null, $ex); exit(1); } // NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY ResultPrinter::printResult("Void Authorization", "Authorization", $voidedAuth->getId(), null, $voidedAuth); return $voidedAuth;