Sample code for 30+ languages & platforms
PowerBuilder

CardConnect Create Profile

See more CardConnect Examples

Demonstrates how to create a profile.
A PUT call to the profile endpoint creates a new profile or adds a new account to an existing profile. ...

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

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_Json
string ls_Url
oleobject loo_Resp
oleobject loo_JsonResp
string ls_Country
string ls_Address
string ls_Resptext
string ls_City
string ls_Acctid
string ls_Respcode
string ls_Defaultacct
string ls_Accttype
string ls_Token
string ls_License
string ls_Respproc
string ls_Phone
string ls_Profileid
string ls_Name
string ls_Auoptout
string ls_Postal
string ls_Expiry
string ls_Region
string ls_Ssnl4
string ls_Respstat

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"

// Build and send the following JSON:

// {
//   "region": "AK",
//   "phone": "7778789999",
//   "accttype": "VISA",
//   "postal": "19090",
//   "ssnl4": "3655",
//   "expiry": "0214",
//   "city": "ANYTOWN",
//   "country": "US",
//   "address": "123 MAIN STREET",
//   "merchid": "496400000840",
//   "name": "TOM JONES",
//   "account": "4444333322221111",
//   "license": "123451254",
// }

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

loo_Json.UpdateString("region","AK")
loo_Json.UpdateString("phone","7778789999")
loo_Json.UpdateString("accttype","VISA")
loo_Json.UpdateString("postal","19090")
loo_Json.UpdateString("ssnl4","3655")
loo_Json.UpdateString("expiry","0214")
loo_Json.UpdateString("city","ANYTOWN")
loo_Json.UpdateString("country","US")
loo_Json.UpdateString("address","123 MAIN STREET")
loo_Json.UpdateString("merchid","MERCHANT_ID")
loo_Json.UpdateString("name","TOM JONES")
loo_Json.UpdateString("account","4444333322221111")
loo_Json.UpdateString("license","123451254")

ls_Url = "https://<site>.cardconnect.com:<port>/cardconnect/rest/profile"

loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpStr("PUT",ls_Url,loo_Json.Emit(),"utf-8","application/json",loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    destroy loo_Resp
    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_Resp.StatusCode)

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

loo_JsonResp.Load(loo_Resp.BodyStr)
loo_JsonResp.EmitCompact = 0

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

// A successful response looks like this:

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

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

ls_Country = loo_JsonResp.StringOf("country")
ls_Address = loo_JsonResp.StringOf("address")
ls_Resptext = loo_JsonResp.StringOf("resptext")
ls_City = loo_JsonResp.StringOf("city")
ls_Acctid = loo_JsonResp.StringOf("acctid")
ls_Respcode = loo_JsonResp.StringOf("respcode")
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_Respproc = loo_JsonResp.StringOf("respproc")
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")
ls_Respstat = loo_JsonResp.StringOf("respstat")


destroy loo_Http
destroy loo_Json
destroy loo_Resp
destroy loo_JsonResp