PureBasic
PureBasic
Isabel Connect Get Account
See more Ibanity Examples
Get the details for a specific account.Chilkat PureBasic Downloads
IncludeFile "CkCert.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkPrivateKey.pb"
IncludeFile "CkJsonObject.pb"
Procedure ChilkatExample()
success.i = 0
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
; 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.
cert.i = CkCert::ckCreate()
If cert.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkCert::ckLoadFromFile(cert,"qa_data/pem/my_ibanity_certificate.pem")
If success = 0
Debug CkCert::ckLastErrorText(cert)
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
ProcedureReturn
EndIf
privKey.i = CkPrivateKey::ckCreate()
If privKey.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkPrivateKey::ckLoadEncryptedPemFile(privKey,"qa_data/pem/my_ibanity_private_key.pem","my_pem_password")
If success = 0
Debug CkPrivateKey::ckLastErrorText(privKey)
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
ProcedureReturn
EndIf
success = CkCert::ckSetPrivateKey(cert,privKey)
If success = 0
Debug CkCert::ckLastErrorText(cert)
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
ProcedureReturn
EndIf
success = CkHttp::ckSetSslClientCert(http,cert)
If success = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
ProcedureReturn
EndIf
; Load the previously obtained access token.
jsonToken.i = CkJsonObject::ckCreate()
If jsonToken.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkJsonObject::ckLoadFile(jsonToken,"qa_data/tokens/isabel_access_token.json")
If success = 0
Debug "No existing access token."
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
CkJsonObject::ckDispose(jsonToken)
ProcedureReturn
EndIf
; This causes the "Authorization: Bearer ***" header to be added to the HTTP request.
CkHttp::setCkAuthToken(http, CkJsonObject::ckStringOf(jsonToken,"access_token"))
CkHttp::setCkAccept(http, "application/vnd.api+json")
CkHttp::ckSetUrlVar(http,"id","93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1")
jsonStr.s = CkHttp::ckQuickGetStr(http,"https://api.ibanity.com/isabel-connect/accounts/{$id}")
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
CkJsonObject::ckDispose(jsonToken)
ProcedureReturn
EndIf
jResp.i = CkJsonObject::ckCreate()
If jResp.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckLoad(jResp,jsonStr)
CkJsonObject::setCkEmitCompact(jResp, 0)
Debug "Response Body:"
Debug CkJsonObject::ckEmit(jResp)
respStatusCode.i = CkHttp::ckLastStatus(http)
Debug "Response Status Code = " + Str(respStatusCode)
If respStatusCode >= 400
Debug "Response Header:"
Debug CkHttp::ckLastResponseHeader(http)
Debug "Failed."
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
CkJsonObject::ckDispose(jsonToken)
CkJsonObject::ckDispose(jResp)
ProcedureReturn
EndIf
; 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
dataAttributesCountry.s = CkJsonObject::ckStringOf(jResp,"data.attributes.country")
dataAttributesCurrency.s = CkJsonObject::ckStringOf(jResp,"data.attributes.currency")
dataAttributesDescription.s = CkJsonObject::ckStringOf(jResp,"data.attributes.description")
dataAttributesFinancialInstitutionBic.s = CkJsonObject::ckStringOf(jResp,"data.attributes.financialInstitutionBic")
dataAttributesHolderAddress.s = CkJsonObject::ckStringOf(jResp,"data.attributes.holderAddress")
dataAttributesHolderAddressCountry.s = CkJsonObject::ckStringOf(jResp,"data.attributes.holderAddressCountry")
dataAttributesHolderName.s = CkJsonObject::ckStringOf(jResp,"data.attributes.holderName")
dataAttributesReference.s = CkJsonObject::ckStringOf(jResp,"data.attributes.reference")
dataAttributesReferenceType.s = CkJsonObject::ckStringOf(jResp,"data.attributes.referenceType")
dataId.s = CkJsonObject::ckStringOf(jResp,"data.id")
dataType.s = CkJsonObject::ckStringOf(jResp,"data.type")
CkHttp::ckDispose(http)
CkCert::ckDispose(cert)
CkPrivateKey::ckDispose(privKey)
CkJsonObject::ckDispose(jsonToken)
CkJsonObject::ckDispose(jResp)
ProcedureReturn
EndProcedure