PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
payments
/
paypal-merchant-sdk
/
samples
/
PaymentSettlements
<?php require_once '../PPBootStrap.php'; /* * Authorize a payment. */ /* * (Required) Amount to reauthorize. */ $amount = new BasicAmountType($_REQUEST['currencyCode'], $_REQUEST['amt']); /* * (Required) Value of a previously authorized transaction identification number returned by PayPal. */ $doReAuthRequest = new DoReauthorizationRequestType($_REQUEST['authID'], $amount); $doReAuthReq = new DoReauthorizationReq(); $doReAuthReq->DoReauthorizationRequest = $doReAuthRequest; /* * ## Creating service wrapper object Creating service wrapper object to make API call and loading Configuration::getAcctAndConfig() returns array that contains credential and config parameters */ $paypalService = new PayPalAPIInterfaceServiceService(Configuration::getAcctAndConfig()); try { /* wrap API method calls on the service object with a try catch */ $doReAuthResponse = $paypalService->DoReauthorization($doReAuthReq); } catch (Exception $ex) { include_once '../Error.php'; exit; } if (isset($doReAuthResponse)) { echo '<pre>'; print_r($doReAuthResponse); echo '</pre>'; } require_once '../Response.php';
[+]
..
[-] DoCapture.php
[edit]
[-] ManagePendingTransactionStatus.php
[edit]
[-] DoAuthorization.php
[edit]
[-] DoVoid.html.php
[edit]
[-] DoCapture.html.php
[edit]
[-] DoAuthorization.html.php
[edit]
[-] DoVoid.php
[edit]
[-] DoReauthorization.html.php
[edit]
[-] DoNonReferencedCredit.html.php
[edit]
[-] ReverseTransaction.php
[edit]
[-] ReverseTransaction.html.php
[edit]
[-] Refund.php
[edit]
[-] Refund.html.php
[edit]
[-] DoNonReferencedCredit.php
[edit]
[-] ManagePendingTransactionStatus.html.php
[edit]
[-] DoReauthorization.php
[edit]