A PHP interface implementation of the Blue Tarp Financial Authorization API.
- Use all current (as of V1) POST and GET methods of the Blue Tarp Financial Auth API.
- All responses are in a PHP array, with only the relevant sections present.
$bt = BlueTarp($yourMerchantNumber, $yourClientKey);
$auth = $bt->authorizeSale($purchaserTokenOrNumber, $dollarAmount);
$response = $auth['BT:MESSAGE'];
[BT:CODE]
[BT:MESSAGE]
[BT:TRANSACTION]
[BT:AUTH-SEQ]
[BT:APPROVAL-CODE]
[BT:CUSTOMER] => Array
[BT:NUMBER]
[BT:NAME]
[BT:STATUS]
[BT:REASON]
[BT:ADDRESS] => Array
[BT:LINE1]
[BT:CITY]
[BT:STATE]
[BT:ZIP]
[BT:PURCHASERS] => Array
[BT:PURCHASER] => Array
[BT:LAST4]
[BT:NAME]
[BT:TOKEN]
[BT:TRANSACTION] => Array
[BT:AMOUNT]
[BT:AUTH-SEQ]
[BT:INVOICE]
[BT:JOB-CODE]
[BT:CUSTOMER] => Array
[BT:NUMBER]
[BT:NAME]
[BT:PURCHASERS] => Array
[BT:PURCHASER] => Array
[BT:LAST4]
[BT:NAME]
[BT:TOKEN]
- Blue Tarp Github
- Blue Tarp Financial
- API Version 1