PowerBuilder
PowerBuilder
Isabel Connect List Accounts
See more Ibanity Examples
Get a list of accounts.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_JsonToken
string ls_JsonStr
oleobject loo_JResp
integer li_RespStatusCode
string ls_Id
string ls_V_type
integer li_MetaPagingOffset
integer li_MetaPagingTotal
integer i
integer li_Count_i
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 \
// --cert certificate.pem:qwertyuiop1 \
// --key private_key.pem \
// -H "Authorization: Bearer access_token_1603365407" \
// -H "Accept: application/vnd.api+json"
// Ibanity provides the certificate + private key in PFX format. This example will use the .pfx instead of the pair of PEM files.
// (It is also possible to implement using Chilkat with the PEM files, but PFX is easier.)
li_Success = loo_Http.SetSslClientCertPfx("qa_data/pfx/my_ibanity_certificate.pfx","my_pfx_password")
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
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_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"
ls_JsonStr = loo_Http.QuickGetStr("https://api.ibanity.com/isabel-connect/accounts")
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
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_JsonToken
destroy loo_JResp
return
end if
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": [
// {
// "id": "93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1",
// "type": "account"
// }
// ],
// "meta": {
// "paging": {
// "offset": 0,
// "total": 1
// }
// }
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
li_MetaPagingOffset = loo_JResp.IntOf("meta.paging.offset")
li_MetaPagingTotal = loo_JResp.IntOf("meta.paging.total")
i = 0
li_Count_i = loo_JResp.SizeOfArray("data")
do while i < li_Count_i
loo_JResp.I = i
ls_Id = loo_JResp.StringOf("data[i].id")
ls_V_type = loo_JResp.StringOf("data[i].type")
i = i + 1
loop
destroy loo_Http
destroy loo_JsonToken
destroy loo_JResp