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
(Visual FoxPro) CardConnect Settlement StatusDemonstrates how to get the status of transactions which have been submitted to the processor for settlement. The settlement status service returns the status of transactions which have been submitted to the processor for settlement. The transaction’s setlstatus is updated appropriately when CardConnect’s receives a response from the processor. You can either specify a batchid to return a specific batch of transactions, or use a date to return all transactions settled for that date. ... See https://developer.cardconnect.com/cardconnect-api#settlement-status
LOCAL loHttp LOCAL lnSuccess LOCAL lcUrl LOCAL lcResponseStr LOCAL loJsonResp LOCAL lcSetlamount LOCAL lcSetlstat LOCAL lcSalesdoc LOCAL lcRetref LOCAL lcRespproc LOCAL lcHostbatch LOCAL lcRefundtotal LOCAL lcBatchid LOCAL lcChargetotal LOCAL lcHoststat LOCAL lcMerchid LOCAL i LOCAL lnCount_i * 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 CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') loHttp.BasicAuth = 1 loHttp.Login = "API_USERNAME" loHttp.Password = "API_PASSWORD" lcUrl = "https://<site>.cardconnect.com:<port>/cardconnect/rest/settlestat?merchid=<merchid>&batchid=<batchid>" lcResponseStr = loHttp.QuickGetStr(lcUrl) IF (loHttp.LastMethodSuccess = 0) THEN ? loHttp.LastErrorText RELEASE loHttp CANCEL ENDIF * 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. ? "response status code = " + STR(loHttp.LastStatus) * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject') loJsonResp = CreateObject('Chilkat.JsonObject') loJsonResp.Load(lcResponseStr) loJsonResp.EmitCompact = 0 ? "response JSON:" ? loJsonResp.Emit() * A successful response looks like this: * { * "respproc": "FNOR", * "hostbatch": "", * "refundtotal": "0.00", * "batchid": "1900942291", * "chargetotal": "0.00", * "hoststat": "", * "merchid": "MERCHANT_ID", * "txns": [ * { * "setlamount": "13.28", * "setlstat": "R", * "salesdoc": "rosedale_1555412201_392", * "retref": "106631225001" * }, * { * "setlamount": "13.28", * "setlstat": "R", * "salesdoc": "rosedale_1555412353_392", * "retref": "106731125153" * }, * { * "setlamount": "7.64", * "setlstat": "R", * "salesdoc": "rosedale_1555414960_393", * "retref": "106008227760" * } * ] * } * Use this online tool to generate parsing code from sample JSON: * Generate Parsing Code from JSON lcRespproc = loJsonResp.StringOf("respproc") lcHostbatch = loJsonResp.StringOf("hostbatch") lcRefundtotal = loJsonResp.StringOf("refundtotal") lcBatchid = loJsonResp.StringOf("batchid") lcChargetotal = loJsonResp.StringOf("chargetotal") lcHoststat = loJsonResp.StringOf("hoststat") lcMerchid = loJsonResp.StringOf("merchid") i = 0 lnCount_i = loJsonResp.SizeOfArray("txns") DO WHILE i < lnCount_i loJsonResp.I = i lcSetlamount = loJsonResp.StringOf("txns[i].setlamount") lcSetlstat = loJsonResp.StringOf("txns[i].setlstat") lcSalesdoc = loJsonResp.StringOf("txns[i].salesdoc") lcRetref = loJsonResp.StringOf("txns[i].retref") i = i + 1 ENDDO RELEASE loHttp RELEASE loJsonResp |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.