Sample code for 30+ languages & platforms
C

CardConnect Get Profile

See more CardConnect Examples

Demonstrates how to get a profile.
A GET request to the profile endpoint returns the stored data for the specified profile ID. ...

See https://developer.cardconnect.com/cardconnect-api?lang=json#get-profile-request

Chilkat C Downloads

C
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    const char *url;
    const char *responseStr;
    HCkJsonObject jsonResp;
    const char *country;
    const char *gsacard;
    const char *address;
    const char *city;
    const char *acctid;
    const char *defaultacct;
    const char *accttype;
    const char *token;
    const char *license;
    const char *phone;
    const char *profileid;
    const char *name;
    const char *auoptout;
    const char *postal;
    const char *expiry;
    const char *region;
    const char *ssnl4;

    success = FALSE;

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

    http = CkHttp_Create();

    CkHttp_putBasicAuth(http,TRUE);
    CkHttp_putLogin(http,"API_USERNAME");
    CkHttp_putPassword(http,"API_PASSWORD");

    url = "https://<site>.cardconnect.com:<port>/cardconnect/rest/profile/<profile ID>/<account ID>/<merchid>";
    responseStr = CkHttp_quickGetStr(http,url);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        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.
    printf("response status code = %d\n",CkHttp_getLastStatus(http));

    jsonResp = CkJsonObject_Create();
    CkJsonObject_Load(jsonResp,responseStr);
    CkJsonObject_putEmitCompact(jsonResp,FALSE);

    printf("response JSON:\n");
    printf("%s\n",CkJsonObject_emit(jsonResp));

    // A successful response looks like this:

    // {
    //   "country": "US",
    //   "gsacard": "N",
    //   "address": "123 MAIN STREET",
    //   "city": "ANYTOWN",
    //   "acctid": "1",
    //   "defaultacct": "Y",
    //   "accttype": "VISA",
    //   "token": "9441149619831111",
    //   "license": "123451254",
    //   "phone": "7778789999",
    //   "profileid": "16392957457306633141",
    //   "name": "TOM JONES",
    //   "auoptout": "N",
    //   "postal": "19090",
    //   "expiry": "0214",
    //   "region": "AK",
    //   "ssnl4": "3655"
    // }

    // Use this online tool to generate parsing code from sample JSON: 
    // Generate Parsing Code from JSON

    country = CkJsonObject_stringOf(jsonResp,"country");
    gsacard = CkJsonObject_stringOf(jsonResp,"gsacard");
    address = CkJsonObject_stringOf(jsonResp,"address");
    city = CkJsonObject_stringOf(jsonResp,"city");
    acctid = CkJsonObject_stringOf(jsonResp,"acctid");
    defaultacct = CkJsonObject_stringOf(jsonResp,"defaultacct");
    accttype = CkJsonObject_stringOf(jsonResp,"accttype");
    token = CkJsonObject_stringOf(jsonResp,"token");
    license = CkJsonObject_stringOf(jsonResp,"license");
    phone = CkJsonObject_stringOf(jsonResp,"phone");
    profileid = CkJsonObject_stringOf(jsonResp,"profileid");
    name = CkJsonObject_stringOf(jsonResp,"name");
    auoptout = CkJsonObject_stringOf(jsonResp,"auoptout");
    postal = CkJsonObject_stringOf(jsonResp,"postal");
    expiry = CkJsonObject_stringOf(jsonResp,"expiry");
    region = CkJsonObject_stringOf(jsonResp,"region");
    ssnl4 = CkJsonObject_stringOf(jsonResp,"ssnl4");


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(jsonResp);

    }