Sample code for 30+ languages & platforms
PureBasic

Isabel Connect List Accounts

See more Ibanity Examples

Get a list of accounts.

Chilkat PureBasic Downloads

PureBasic
IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.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 \
    ; --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.)
    success = CkHttp::ckSetSslClientCertPfx(http,"qa_data/pfx/my_ibanity_certificate.pfx","my_pfx_password")
    If success = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        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)
        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")

    jsonStr.s = CkHttp::ckQuickGetStr(http,"https://api.ibanity.com/isabel-connect/accounts")
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        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)
        CkJsonObject::ckDispose(jsonToken)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

    ; 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

    id.s
    v_type.s

    metaPagingOffset.i = CkJsonObject::ckIntOf(jResp,"meta.paging.offset")
    metaPagingTotal.i = CkJsonObject::ckIntOf(jResp,"meta.paging.total")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jResp,"data")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        id = CkJsonObject::ckStringOf(jResp,"data[i].id")
        v_type = CkJsonObject::ckStringOf(jResp,"data[i].type")
        i = i + 1
    Wend


    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(jsonToken)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure