Sample code for 30+ languages & platforms
Visual FoxPro

CardConnect Settlement Status

See more CardConnect Examples

Demonstrates 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

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loHttp
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

lnSuccess = 0

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

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)

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