Sample code for 30+ languages & platforms
PowerBuilder

Isabel Connect Get Account

See more Ibanity Examples

Get the details for a specific account.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_Cert
oleobject loo_PrivKey
oleobject loo_JsonToken
string ls_JsonStr
oleobject loo_JResp
integer li_RespStatusCode
string ls_DataAttributesCountry
string ls_DataAttributesCurrency
string ls_DataAttributesDescription
string ls_DataAttributesFinancialInstitutionBic
string ls_DataAttributesHolderAddress
string ls_DataAttributesHolderAddressCountry
string ls_DataAttributesHolderName
string ls_DataAttributesReference
string ls_DataAttributesReferenceType
string ls_DataId
string ls_DataType

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

// Implements the following CURL command:

// curl -X GET https://api.ibanity.com/isabel-connect/accounts/93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1 \
// --cert certificate.pem:qwertyuiop1 \
// --key private_key.pem  \
// -H "Authorization: Bearer access_token_1603365407" \
// -H "Accept: application/vnd.api+json"  

// Other Chilkat examples for Ibanity show how to set the SSL client certificate using the .pfx.
// This example will demonstrate using the PEM files.
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert")

li_Success = loo_Cert.LoadFromFile("qa_data/pem/my_ibanity_certificate.pem")
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    return
end if

loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat.PrivateKey")

li_Success = loo_PrivKey.LoadEncryptedPemFile("qa_data/pem/my_ibanity_private_key.pem","my_pem_password")
if li_Success = 0 then
    Write-Debug loo_PrivKey.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

li_Success = loo_Cert.SetPrivateKey(loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

li_Success = loo_Http.SetSslClientCert(loo_Cert)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

// Load the previously obtained access token.
loo_JsonToken = create oleobject
li_rc = loo_JsonToken.ConnectToNewObject("Chilkat.JsonObject")

li_Success = loo_JsonToken.LoadFile("qa_data/tokens/isabel_access_token.json")
if li_Success = 0 then
    Write-Debug "No existing access token."
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    return
end if

// This causes the "Authorization: Bearer ***" header to be added to the HTTP request.
loo_Http.AuthToken = loo_JsonToken.StringOf("access_token")

loo_Http.Accept = "application/vnd.api+json"

loo_Http.SetUrlVar("id","93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1")
ls_JsonStr = loo_Http.QuickGetStr("https://api.ibanity.com/isabel-connect/accounts/{$id}")
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    return
end if

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

loo_JResp.Load(ls_JsonStr)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastResponseHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    destroy loo_JResp
    return
end if

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "data": {
//     "attributes": {
//       "country": "BE",
//       "currency": "EUR",
//       "description": "current account",
//       "financialInstitutionBic": "KREDBEBB",
//       "holderAddress": "STREET NUMBER, ZIPCODE CITY",
//       "holderAddressCountry": "BE",
//       "holderName": "COMPANY",
//       "reference": "BE96153112434405",
//       "referenceType": "IBAN"
//     },
//     "id": "93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1",
//     "type": "account"
//   }
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

ls_DataAttributesCountry = loo_JResp.StringOf("data.attributes.country")
ls_DataAttributesCurrency = loo_JResp.StringOf("data.attributes.currency")
ls_DataAttributesDescription = loo_JResp.StringOf("data.attributes.description")
ls_DataAttributesFinancialInstitutionBic = loo_JResp.StringOf("data.attributes.financialInstitutionBic")
ls_DataAttributesHolderAddress = loo_JResp.StringOf("data.attributes.holderAddress")
ls_DataAttributesHolderAddressCountry = loo_JResp.StringOf("data.attributes.holderAddressCountry")
ls_DataAttributesHolderName = loo_JResp.StringOf("data.attributes.holderName")
ls_DataAttributesReference = loo_JResp.StringOf("data.attributes.reference")
ls_DataAttributesReferenceType = loo_JResp.StringOf("data.attributes.referenceType")
ls_DataId = loo_JResp.StringOf("data.id")
ls_DataType = loo_JResp.StringOf("data.type")


destroy loo_Http
destroy loo_Cert
destroy loo_PrivKey
destroy loo_JsonToken
destroy loo_JResp