This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/sample/payments/GetAuthorization.php
Randy 14e814d74b Remove credit card samples (#896)
* removed credit card payment samples
* update docs to reflect sample changes
* update readme to recommend braintree for direct card payments
2017-08-03 10:32:26 -05:00

32 lines
1.1 KiB
PHP

<?php
// # GetAuthorization
// This sample code demonstrates how you can get details
// of an authorized payment.
// API used: /v1/payments/authorization/<$authorizationId>
use PayPal\Api\Authorization;
// Replace $authorizationId with any static Id you might already have.
$authorizationId = "<your authorization id here>";
// ### 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) {
// NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
ResultPrinter::printError("Get Authorization", "Authorization", null, null, $ex);
exit(1);
}
// NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
ResultPrinter::printResult("Get Authorization", "Authorization", $authorizationId, null, $result);
return $result;