Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PHP ActiveX) CardConnect FundingDemonstrates how to get the merchant funding information. The funding endpoint provides merchant funding information supported by supplemental transaction and funding adjustment detail. This information is provided by the host payment processing platform (for example, First Data Omaha). ... See https://developer.cardconnect.com/cardconnect-api?lang=json#funding
<?php // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http') $http = new COM("Chilkat.Http"); $http->BasicAuth = 1; $http->Login = 'API_USERNAME'; $http->Password = 'API_PASSWORD'; $url = 'https://<site>.cardconnect.com:<port>/cardconnect/rest/funding?merchid=<merchid>&date=<MMDD>'; $responseStr = $http->quickGetStr($url); if ($http->LastMethodSuccess == 0) { print $http->LastErrorText . "\n"; exit; } // A response status of 200 indicates potential success. The JSON response body // must be examined to determine if it was truly successful or an error. print 'response status code = ' . $http->LastStatus . "\n"; // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject') $jsonResp = new COM("Chilkat.JsonObject"); $jsonResp->Load($responseStr); $jsonResp->EmitCompact = 0; print 'response JSON:' . "\n"; print $jsonResp->emit() . "\n"; // A successful response looks like this: // ------ // See the parsing code below... // ------ // { // "fundingmasterid": 1121753252164835, // "fundingdate": "2019-04-22", // "adjustments": [ // { // "fundingmasterid": 1121753252164835, // "amount": "-44.98", // "datechanged": "2019-04-22", // "fundingadjustmentid": 1121754400164838, // "description": "THE CARDHOLDER DID NOT AUTHORIZE THE CHARGE.", // "currency": "USD", // "category": "REVERSAL", // "type": "CHARGEBACKS/CHARGEBACK REVERSALS", // "dateadded": "2019-04-22", // "merchid": "MERCHANT_ID" // }, // { // "fundingmasterid": 1121753252164835, // "amount": "-32.96", // "datechanged": "2019-04-22", // "fundingadjustmentid": 1121754401164838, // "description": "THIRD PARTY ADJUSTMENTS", // "currency": "USD", // "category": "THIRD PARTY", // "type": "THIRD PARTY ADJUSTMENTS", // "dateadded": "2019-04-22", // "merchid": "MERCHANT_ID" // } // ], // "datechanged": null, // "fundings": [ // { // "fundingid": 1121753284164836, // "netsales": "129453.03", // "totalfunding": "129375.09", // "fee": "0", // "datechanged": "2019-04-22", // "deposittrancode": null, // "ddanumber": "3300770540", // "thirdparty": "-32.96", // "dateadded": "2019-04-22", // "fundingmasterid": 1121753252164835, // "reversal": "-44.98", // "interchangefee": "0", // "adjustment": "0", // "currency": "USD", // "depositachtracenumber": null, // "servicecharge": "0", // "otheradjustment": "0", // "abanumber": "121140399" // } // ], // "merchid": "MERCHANT_ID", // "txns": [ // { // "date": "2019-04-19", // "amount": "76.75", // "downgradereasoncodes": null, // "fundingid": 1121753409164836, // "cardproc": "FNOR", // "sourcetransactionid": null, // "type": "SALE", // "batchid": 1900942289, // "respcode": "00", // "interchangeunitfee": "0", // "authcode": "PPS209", // "plancode": null, // "authdate": 20190419194808, // "fundingtxnid": 1121753252164835, // "cardbrand": "VISA", // "currency": "USD", // "terminalnumber": null, // "cardnumber": "42XXXXXXXXXX4242", // "cardtype": "Credit", // "retref": "109624271288", // "status": "Processed", // "interchangepercentfee": "0", // "invoicenumber": null // }, // { // "date": "2019-04-19", // "amount": "9.99", // "downgradereasoncodes": null, // "fundingid": 1121753410164836, // "cardproc": "FNOR", // "sourcetransactionid": null, // "type": "SALE", // "batchid": 1900942289, // "respcode": "00", // "interchangeunitfee": "0", // "authcode": "PPS009", // "plancode": null, // "authdate": 20190419201502, // "fundingtxnid": 1121753252164835, // "cardbrand": "VISA", // "currency": "USD", // "terminalnumber": null, // "cardnumber": "47XXXXXXXXXX1443", // "cardtype": "Credit", // "retref": "109638272902", // "status": "Processed", // "interchangepercentfee": "0", // "invoicenumber": null // } // ] // } // // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON $fundingmasterid = $jsonResp->IntOf('fundingmasterid'); $fundingdate = $jsonResp->stringOf('fundingdate'); $datechanged = $jsonResp->stringOf('datechanged'); $merchid = $jsonResp->stringOf('merchid'); $i = 0; $count_i = $jsonResp->SizeOfArray('adjustments'); while ($i < $count_i) { $jsonResp->I = $i; $fundingmasterid = $jsonResp->IntOf('adjustments[i].fundingmasterid'); $amount = $jsonResp->stringOf('adjustments[i].amount'); $datechanged = $jsonResp->stringOf('adjustments[i].datechanged'); $fundingadjustmentid = $jsonResp->IntOf('adjustments[i].fundingadjustmentid'); $description = $jsonResp->stringOf('adjustments[i].description'); $currency = $jsonResp->stringOf('adjustments[i].currency'); $category = $jsonResp->stringOf('adjustments[i].category'); $v_type = $jsonResp->stringOf('adjustments[i].type'); $dateadded = $jsonResp->stringOf('adjustments[i].dateadded'); $merchid = $jsonResp->stringOf('adjustments[i].merchid'); $i = $i + 1; } $i = 0; $count_i = $jsonResp->SizeOfArray('fundings'); while ($i < $count_i) { $jsonResp->I = $i; $fundingid = $jsonResp->IntOf('fundings[i].fundingid'); $netsales = $jsonResp->stringOf('fundings[i].netsales'); $totalfunding = $jsonResp->stringOf('fundings[i].totalfunding'); $fee = $jsonResp->stringOf('fundings[i].fee'); $datechanged = $jsonResp->stringOf('fundings[i].datechanged'); $deposittrancode = $jsonResp->stringOf('fundings[i].deposittrancode'); $ddanumber = $jsonResp->stringOf('fundings[i].ddanumber'); $thirdparty = $jsonResp->stringOf('fundings[i].thirdparty'); $dateadded = $jsonResp->stringOf('fundings[i].dateadded'); $fundingmasterid = $jsonResp->IntOf('fundings[i].fundingmasterid'); $reversal = $jsonResp->stringOf('fundings[i].reversal'); $interchangefee = $jsonResp->stringOf('fundings[i].interchangefee'); $adjustment = $jsonResp->stringOf('fundings[i].adjustment'); $currency = $jsonResp->stringOf('fundings[i].currency'); $depositachtracenumber = $jsonResp->stringOf('fundings[i].depositachtracenumber'); $servicecharge = $jsonResp->stringOf('fundings[i].servicecharge'); $otheradjustment = $jsonResp->stringOf('fundings[i].otheradjustment'); $abanumber = $jsonResp->stringOf('fundings[i].abanumber'); $i = $i + 1; } $i = 0; $count_i = $jsonResp->SizeOfArray('txns'); while ($i < $count_i) { $jsonResp->I = $i; $date = $jsonResp->stringOf('txns[i].date'); $amount = $jsonResp->stringOf('txns[i].amount'); $downgradereasoncodes = $jsonResp->stringOf('txns[i].downgradereasoncodes'); $fundingid = $jsonResp->IntOf('txns[i].fundingid'); $cardproc = $jsonResp->stringOf('txns[i].cardproc'); $sourcetransactionid = $jsonResp->stringOf('txns[i].sourcetransactionid'); $v_type = $jsonResp->stringOf('txns[i].type'); $batchid = $jsonResp->IntOf('txns[i].batchid'); $respcode = $jsonResp->stringOf('txns[i].respcode'); $interchangeunitfee = $jsonResp->stringOf('txns[i].interchangeunitfee'); $authcode = $jsonResp->stringOf('txns[i].authcode'); $plancode = $jsonResp->stringOf('txns[i].plancode'); $authdate = $jsonResp->IntOf('txns[i].authdate'); $fundingtxnid = $jsonResp->IntOf('txns[i].fundingtxnid'); $cardbrand = $jsonResp->stringOf('txns[i].cardbrand'); $currency = $jsonResp->stringOf('txns[i].currency'); $terminalnumber = $jsonResp->stringOf('txns[i].terminalnumber'); $cardnumber = $jsonResp->stringOf('txns[i].cardnumber'); $cardtype = $jsonResp->stringOf('txns[i].cardtype'); $retref = $jsonResp->stringOf('txns[i].retref'); $status = $jsonResp->stringOf('txns[i].status'); $interchangepercentfee = $jsonResp->stringOf('txns[i].interchangepercentfee'); $invoicenumber = $jsonResp->stringOf('txns[i].invoicenumber'); $i = $i + 1; } ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.