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
(C++) CardConnect InquireDemonstrates how to get information for an individual transaction, including its settlement status (setlstat) and the response codes from the initial authorization. See https://developer.cardconnect.com/cardconnect-api?lang=json#inquire
#include <CkHttp.h> #include <CkJsonObject.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttp http; bool success; http.put_BasicAuth(true); http.put_Login("API_USERNAME"); http.put_Password("API_PASSWORD"); const char *url = "https://<site>.cardconnect.com:<port>/cardconnect/rest/inquire/<retref>/<merchid>"; const char *responseStr = http.quickGetStr(url); if (http.get_LastMethodSuccess() == false) { std::cout << http.lastErrorText() << "\r\n"; return; } // 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. std::cout << "response status code = " << http.get_LastStatus() << "\r\n"; CkJsonObject jsonResp; jsonResp.Load(responseStr); jsonResp.put_EmitCompact(false); std::cout << "response JSON:" << "\r\n"; std::cout << jsonResp.emit() << "\r\n"; // A successful response looks like this: // { // "amount": "0.00", // "resptext": "Approval", // "setlstat": "Voided", // "capturedate": "20190422180044", // "acctid": "1", // "respcode": "00", // "entrymode": "ECommerce", // "merchid": "MERCHANT_ID", // "token": "9418594164541111", // "authcode": "PPS158", // "respproc": "FNOR", // "authdate": "20190422", // "bintype": "", // "profileid": "16618402968441604028", // "lastfour": "1111", // "name": "TOM JONES", // "currency": "USD", // "retref": "112989260941", // "respstat": "A", // "account": "9418594164541111" // } // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON const char *amount = jsonResp.stringOf("amount"); const char *resptext = jsonResp.stringOf("resptext"); const char *setlstat = jsonResp.stringOf("setlstat"); const char *capturedate = jsonResp.stringOf("capturedate"); const char *acctid = jsonResp.stringOf("acctid"); const char *respcode = jsonResp.stringOf("respcode"); const char *entrymode = jsonResp.stringOf("entrymode"); const char *merchid = jsonResp.stringOf("merchid"); const char *token = jsonResp.stringOf("token"); const char *authcode = jsonResp.stringOf("authcode"); const char *respproc = jsonResp.stringOf("respproc"); const char *authdate = jsonResp.stringOf("authdate"); const char *bintype = jsonResp.stringOf("bintype"); const char *profileid = jsonResp.stringOf("profileid"); const char *lastfour = jsonResp.stringOf("lastfour"); const char *name = jsonResp.stringOf("name"); const char *currency = jsonResp.stringOf("currency"); const char *retref = jsonResp.stringOf("retref"); const char *respstat = jsonResp.stringOf("respstat"); const char *account = jsonResp.stringOf("account"); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.