Sample code for 30+ languages & platforms
PowerBuilder

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 PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
string ls_Url
string ls_ResponseStr
oleobject loo_JsonResp
string ls_Country
string ls_Gsacard
string ls_Address
string ls_City
string ls_Acctid
string ls_Defaultacct
string ls_Accttype
string ls_Token
string ls_License
string ls_Phone
string ls_Profileid
string ls_Name
string ls_Auoptout
string ls_Postal
string ls_Expiry
string ls_Region
string ls_Ssnl4

li_Success = 0

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_Http.BasicAuth = 1
loo_Http.Login = "API_USERNAME"
loo_Http.Password = "API_PASSWORD"

ls_Url = "https://<site>.cardconnect.com:<port>/cardconnect/rest/profile/<profile ID>/<account ID>/<merchid>"
ls_ResponseStr = loo_Http.QuickGetStr(ls_Url)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    return
end if

// 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.
Write-Debug "response status code = " + string(loo_Http.LastStatus)

loo_JsonResp = create oleobject
li_rc = loo_JsonResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JsonResp.Load(ls_ResponseStr)
loo_JsonResp.EmitCompact = 0

Write-Debug "response JSON:"
Write-Debug loo_JsonResp.Emit()

// 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

ls_Country = loo_JsonResp.StringOf("country")
ls_Gsacard = loo_JsonResp.StringOf("gsacard")
ls_Address = loo_JsonResp.StringOf("address")
ls_City = loo_JsonResp.StringOf("city")
ls_Acctid = loo_JsonResp.StringOf("acctid")
ls_Defaultacct = loo_JsonResp.StringOf("defaultacct")
ls_Accttype = loo_JsonResp.StringOf("accttype")
ls_Token = loo_JsonResp.StringOf("token")
ls_License = loo_JsonResp.StringOf("license")
ls_Phone = loo_JsonResp.StringOf("phone")
ls_Profileid = loo_JsonResp.StringOf("profileid")
ls_Name = loo_JsonResp.StringOf("name")
ls_Auoptout = loo_JsonResp.StringOf("auoptout")
ls_Postal = loo_JsonResp.StringOf("postal")
ls_Expiry = loo_JsonResp.StringOf("expiry")
ls_Region = loo_JsonResp.StringOf("region")
ls_Ssnl4 = loo_JsonResp.StringOf("ssnl4")


destroy loo_Http
destroy loo_JsonResp