/** @var Authorization $authorization */ $authorization = require 'AuthorizePayment.php'; $authorizationId = '4U805254HC285294Y'; // $authorization->getId(); use PayPal\Api\Authorization; use PayPal\Api\Payment; // ### GetAuthorization // You can retrieve info about an Authorization // by invoking the Authorization::get method // with a valid ApiContext (See bootstrap.php for more on `ApiContext`) // The return object contains the authorization state. try { // Retrieve the authorization $result = Authorization::get($authorizationId, $apiContext); } catch (Exception $ex) { ResultPrinter::printError("Get Authorization", "Authorization", null, null, $ex); exit(1); } ResultPrinter::printResult("Get Authorization", "Authorization", $authorizationId, null, $result); return $result;