PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
payments
/
paypal-merchant-sdk
/
samples
/
PaymentSettlements
<?php require_once '../PPBootStrap.php'; /* * Get required parameters from the web form for the request */ $reverseTransactionReqestDetails = new ReverseTransactionRequestDetailsType(); $reverseTransactionReqestDetails->TransactionID = $_REQUEST['transID']; $reverseTransactionReqest = new ReverseTransactionRequestType(); $reverseTransactionReqest->ReverseTransactionRequestDetails = $reverseTransactionReqestDetails; $reverseTransactionReq = new ReverseTransactionReq(); $reverseTransactionReq->ReverseTransactionRequest = $reverseTransactionReqest; /* 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 */ $reverseTransactionResponse = $paypalService->ReverseTransaction($reverseTransactionReq); } catch (Exception $ex) { include_once '../Error.php'; exit; } if (isset($reverseTransactionResponse)) { echo '<table>'; echo "<tr><td>Ack :</td><td><div id='Ack'>$reverseTransactionResponse->Ack</div> </td></tr>"; //echo "<tr><td>Ack :</td><td><div id='Ack'>$reverseTransactionResponse->ReverseTransactionResponseDetails->ReverseTransactionID</div> </td></tr>"; echo '</table>'; echo '<pre>'; print_r($reverseTransactionResponse); 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]