PHP code example of propa / psigate
1. Go to this page and download the library: Download propa/psigate library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
propa / psigate example snippets
$xmlm = new \PSIGate\XMLMessenger('https://realtimestaging.psigate.com/xml', 'teststore', 'psigate1234');
try {
$result = $xmlm->order(array(
'Subtotal' => '10.00',
'PaymentType' => 'CC',
'CardAction' => '0',
'CardNumber' => '4111111111111111',
'CardExpMonth' => '02',
'CardExpYear' => '16',
'CardIDNumber' => '1234',
'Item' => array(
array(
'ItemID' => 'PSI-BOOK',
'ItemDescription' => 'XML Interface Doc',
'ItemQty' => '1',
'ItemPrice' => '10.00',
'Option' => array(
'Type' => 'Electronic',
'File' => 'xml.doc',
),
),
array(
'ItemID' => 'COUPON',
'ItemDescription' => '10% discount',
'ItemQty' => '1',
'ItemPrice' => '-2.00',
),
),
));
// analyze transaction result ...
} catch (\PSIGate\Exception $e) {
// handle transaction error ...
}
$amm = new \PSIGate\AMMessenger('https://accountsstaging.psigate.com/xml', '1000001', 'teststore', 'testpass');
try {
// register a new account
$accountResult = $amm->accountRegister(array(
'Name' => 'John Smith Jr.',
'Company' => 'PSiGate Inc.',
'Address1' => '145 King St.',
'Address2' => '2300',
'City' => 'Toronto',
'Province' => 'Ontario',
'Postalcode' => 'M5H 1J8',
'Country' => 'Canada',
'Phone' => '1-905-123-4567',
'Fax' => '1-905-123-4568',
'Email' => '[email protected] ',
'Comments' => 'No Comment Today',
'CardInfo' => array(
'CardHolder' => 'John Smith',
'CardNumber' => '4005550000000019',
'CardExpMonth' => '08',
'CardExpYear' => '11',
),
));
// retrieve newly assigned account id
$accountId = $accountResult['AccountID'];
$cardSerialNo = $accountResult['CardInfo']['SerialNo'];
// register a charge
$chargeResult = $amm->chargeRegister(array(
'StoreID' => 'teststore',
'AccountID' => $accountId,
'SerialNo' => $cardSerialNo,
'RBName' => 'Monthly Payment',
'Interval' => 'M',
'RBTrigger' => '12',
'EndDate' => '2011.12.31',
'ItemInfo' => array(
'ProductID' => 'NEWSPAPER',
'Description' => 'TORONTO STAR',
'Quantity' => '1',
'Price' => '25',
'Tax1' => '2',
'Tax2' => '1.25',
),
));
// retrieve newly created charge id
$chargeId = $chargeResult['RBCID'];
// disable a charge
$amm->chargeDisable($chargeId);
// ...
} catch (\PSIGate\Exception $e) {
// handle error ...
}