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
(DataFlex) CardConnect CaptureDemonstrates how to send a CardConnect Capture request. The capture service queues the transaction amount for settlement. Capture can occur within the authorization request or subsequently. ... See https://developer.cardconnect.com/cardconnect-api#capture
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess Handle hoJson String sUrl String sResponseStr Handle hoJsonResp String sAmount String sResptext String sSetlstat String sCommcard String sRespcode String sBatchid String sMerchid String sToken String sAuthcode String sRespproc String sRetref String sRespstat String sAccount String sTemp1 Integer iTemp1 Boolean bTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp End Set ComBasicAuth Of hoHttp To True Set ComLogin Of hoHttp To "API_USERNAME" Set ComPassword Of hoHttp To "API_PASSWORD" // Build and send the following JSON: // The "retref" is the value returned in the JSON response for the Authorization request. // { // "retref":"112989260941", // "merchid":"MERCHANT_ID" // } Get Create (RefClass(cComChilkatJsonObject)) To hoJson If (Not(IsComObjectCreated(hoJson))) Begin Send CreateComObject of hoJson End Get ComUpdateString Of hoJson "retref" "112989260941" To iSuccess Get ComUpdateString Of hoJson "merchid" "MERCHANT_ID" To iSuccess Move "https://<site>.cardconnect.com:<port>/cardconnect/rest/capture" To sUrl Get ComEmit Of hoJson To sTemp1 Get ComPutText Of hoHttp sUrl sTemp1 "utf-8" "application/json" False False To sResponseStr Get ComLastMethodSuccess Of hoHttp To bTemp1 If (bTemp1 = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End // 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. Get ComLastStatus Of hoHttp To iTemp1 Showln "response status code = " iTemp1 Get Create (RefClass(cComChilkatJsonObject)) To hoJsonResp If (Not(IsComObjectCreated(hoJsonResp))) Begin Send CreateComObject of hoJsonResp End Get ComLoad Of hoJsonResp sResponseStr To iSuccess Set ComEmitCompact Of hoJsonResp To False Showln "response JSON:" Get ComEmit Of hoJsonResp To sTemp1 Showln sTemp1 // A successful response looks like this: // { // "amount": "0.20", // "resptext": "Approval", // "setlstat": "Queued for Capture", // "commcard": " C ", // "respcode": "00", // "batchid": "1900942291", // "merchid": "MERCHANT_ID", // "token": "9418594164541111", // "authcode": "PPS158", // "respproc": "FNOR", // "retref": "112989260941", // "respstat": "A", // "account": "9418594164541111" // } // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON Get ComStringOf Of hoJsonResp "amount" To sAmount Get ComStringOf Of hoJsonResp "resptext" To sResptext Get ComStringOf Of hoJsonResp "setlstat" To sSetlstat Get ComStringOf Of hoJsonResp "commcard" To sCommcard Get ComStringOf Of hoJsonResp "respcode" To sRespcode Get ComStringOf Of hoJsonResp "batchid" To sBatchid Get ComStringOf Of hoJsonResp "merchid" To sMerchid Get ComStringOf Of hoJsonResp "token" To sToken Get ComStringOf Of hoJsonResp "authcode" To sAuthcode Get ComStringOf Of hoJsonResp "respproc" To sRespproc Get ComStringOf Of hoJsonResp "retref" To sRetref Get ComStringOf Of hoJsonResp "respstat" To sRespstat Get ComStringOf Of hoJsonResp "account" To sAccount End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.