Sample code for 30+ languages & platforms
Xojo Plugin

Rabobank GET /v3/accounts

See more Rabobank Examples

Demonstrates a call to a Rabobank API. Specifically this makes a call to the "Accounts AIS sb" API to deliver all the consented payments accounts for a specific Rabobank customer.

(This includes source code to for signing requests for PSD2 APIs)

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim http As New Chilkat.Http

// Implements the following CURL command:

// curl --request GET \
//   --url https://api-sandbox.rabobank.nl/openapi/sandbox/payments/account-information/ais/v3/accounts \
//   --header 'accept: application/json' \
//   --header 'authorization: Bearer REPLACE_BEARER_TOKEN' \
//   --header 'date: REPLACE_THIS_VALUE' \
//   --header 'digest: REPLACE_THIS_VALUE' \
//   --header 'psu-ip-address: OPTIONAL' \
//   --header 'signature: REPLACE_THIS_VALUE' \
//   --header 'tpp-signature-certificate: MIIDkDCCAnigA ... cwE6gUl0rMA==' \
//   --header 'x-ibm-client-id: Client ID' \
//   --header 'x-request-id: REPLACE_THIS_VALUE'

// Load the previously fetched OAuth2 access token.
Dim jsonToken As New Chilkat.JsonObject
success = jsonToken.LoadFile("qa_data/tokens/rabobank.json")
If (success = False) Then
    System.DebugLog(jsonToken.LastErrorText)
    Return
End If

// This adds the "authorization: Bearer REPLACE_BEARER_TOKEN" header.
http.AuthToken = jsonToken.StringOf("access_token")

// This is the TTP Signature certificate: The certificate used for signing the request.
Dim sbTppCert As New Chilkat.StringBuilder
success = sbTppCert.Append("MIIDkDCCAnigAwIBAgIEWs3AJDANBgkqhkiG9w0BAQsFADCBiTELMAkGA1UEBhMC")
success = sbTppCert.Append("TkwxEDAOBgNVBAgMB1V0cmVjaHQxEDAOBgNVBAcMB1V0cmVjaHQxETAPBgNVBAoM")
success = sbTppCert.Append("CFJhYm9iYW5rMRwwGgYDVQQLDBNPbmxpbmUgVHJhbnNhY3Rpb25zMSUwIwYDVQQD")
success = sbTppCert.Append("DBxQU0QyIEFQSSBQSSBTZXJ2aWNlcyBTYW5kYm94MB4XDTE4MDQxMTA3NTgyOFoX")
success = sbTppCert.Append("DTIzMDQxMTA3NTgyOFowgYkxCzAJBgNVBAYTAk5MMRAwDgYDVQQIDAdVdHJlY2h0")
success = sbTppCert.Append("MRAwDgYDVQQHDAdVdHJlY2h0MREwDwYDVQQKDAhSYWJvYmFuazEcMBoGA1UECwwT")
success = sbTppCert.Append("T25saW5lIFRyYW5zYWN0aW9uczElMCMGA1UEAwwcUFNEMiBBUEkgUEkgU2Vydmlj")
success = sbTppCert.Append("ZXMgU2FuZGJveDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANoAjqGW")
success = sbTppCert.Append("UgCIm2F+0sBSEwLal+T3u+uldLikpxHCB8iL1GD7FrRjcA+MVsxhvHly7vRsHK+t")
success = sbTppCert.Append("QyMSaeK782RHpY33qxPLc8LmoQLb2EuiQxXj9POYkYBQ74qkrZnvKVlR3WoyQWeD")
success = sbTppCert.Append("OXnSY2wbNFfkP8ET4ElwyuIIEriwYhab0OIrnnrO8X82/SPZxHwEd3aQjQ6uhiw8")
success = sbTppCert.Append("paDspJbS5WjEfuwY16KVVUYlhbtAwGjvc6aK0NBm+LH9fMLpAE6gfGZNy0gzMDor")
success = sbTppCert.Append("VNbkQK1IoAGD8p9ZHdB0F3FwkILEjUiQW6nK+/fKDNJ0TBbpgZUpY8bR460qzxKd")
success = sbTppCert.Append("eZ1yPDqX2Cjh6fkCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAYL4iD6noMJAt63kD")
success = sbTppCert.Append("ED4RB2mII/lssvHhcxuDpOm3Ims9urubFWEpvV5TgIBAxy9PBinOdjhO1kGJJnYi")
success = sbTppCert.Append("7F1jv1qnZwTV1JhYbvxv3+vk0jaiu7Ew7G3ASlzruXyMhN6t6jk9MpaWGl5Uw1T+")
success = sbTppCert.Append("gNRUcWQRR44g3ahQRIS/UHkaV+vcpOa8j186/1X0ULHfbcVQk4LMmJeXqNs8sBAU")
success = sbTppCert.Append("dKU/c6ssvj8jfJ4SfrurcBhY5UBTOdQOXTPY85aU3iFloerx7Oi9EHewxInOrU5X")
success = sbTppCert.Append("zqqTz2AQPXezexVeAQxP27lzqCmYC7CFiam6QBr06VebkmnPLfs76n8CDc1cwE6g")
success = sbTppCert.Append("Ul0rMA==")
http.SetRequestHeader "tpp-signature-certificate",sbTppCert.GetAsString()

// ----------------------------------------------------------------
// We're not going to add the psu-ip-address header in this example.

// ----------------------------------------------------------------
// X-Request-ID header...
// Generate a UUID v4.
Dim crypt As New Chilkat.Crypt2
Dim xRequestId As String
xRequestId = crypt.GenerateUuid()
http.SetRequestHeader "x-request-id",xRequestId

// ----------------------------------------------------------------
// Date header...
Dim dt As New Chilkat.CkDateTime
success = dt.SetFromCurrentSystemTime()
Dim dateHdrVal As String
dateHdrVal = dt.GetAsRfc822(False)
// The desire date/time format is the "RFC822" format.
http.SetRequestHeader "Date",dateHdrVal

// ----------------------------------------------------------------
// Digest header...
crypt.HashAlgorithm = "SHA256"
crypt.EncodingMode = "base64"
// A GET request has no HTTP request body.  Therefore the payload is the empty string.
Dim payload As String
payload = ""
Dim payloadDigest As String
payloadDigest = crypt.HashStringENC(payload)
Dim sbDigestHdrVal As New Chilkat.StringBuilder
success = sbDigestHdrVal.Append("SHA-256=")
success = sbDigestHdrVal.Append(payloadDigest)
http.SetRequestHeader "digest",sbDigestHdrVal.GetAsString()

// ----------------------------------------------------------------
// The HTTP request needs to be signed for PSD2 API's...
// Create the signing string (to use in signing the HTTP request).
// See https://developer.rabobank.nl/signing-requests-psd2-apis
// 
// For "account information" HTTP requests, we must use the following headers in the signing string.
//    date
//    digest
//    x-request-id

Dim sbStringToSign As New Chilkat.StringBuilder
success = sbStringToSign.Append("date: ")
success = sbStringToSign.AppendLine(dateHdrVal,False)
success = sbStringToSign.Append("digest: ")
success = sbStringToSign.AppendLine(sbDigestHdrVal.GetAsString(),False)
success = sbStringToSign.Append("x-request-id: ")
success = sbStringToSign.Append(xRequestId)

// ----------------------------------------------------------------
// Sign with our private key...
Dim sbPrivKey As New Chilkat.StringBuilder
success = sbPrivKey.Append("MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDaAI6hllIAiJth")
success = sbPrivKey.Append("ftLAUhMC2pfk97vrpXS4pKcRwgfIi9Rg+xa0Y3APjFbMYbx5cu70bByvrUMjEmni")
success = sbPrivKey.Append("u/NkR6WN96sTy3PC5qEC29hLokMV4/TzmJGAUO+KpK2Z7ylZUd1qMkFngzl50mNs")
success = sbPrivKey.Append("GzRX5D/BE+BJcMriCBK4sGIWm9DiK556zvF/Nv0j2cR8BHd2kI0OroYsPKWg7KSW")
success = sbPrivKey.Append("0uVoxH7sGNeilVVGJYW7QMBo73OmitDQZvix/XzC6QBOoHxmTctIMzA6K1TW5ECt")
success = sbPrivKey.Append("SKABg/KfWR3QdBdxcJCCxI1IkFupyvv3ygzSdEwW6YGVKWPG0eOtKs8SnXmdcjw6")
success = sbPrivKey.Append("l9go4en5AgMBAAECggEAB8nsTqalwGIhFw8mbXuhNUFlGuek/arYLD6pv28swwQH")
success = sbPrivKey.Append("7v0ZlxFUcCHF+iBl0PsDwZTZQ4ePtgGS6ehoLkWHCzb1lEv5E1YVG5qKNE2UUwRl")
success = sbPrivKey.Append("fIyPakO6AzyV/UF3uzq7C+/GuXGNTKZxKewg5yD/DCFvKoCOpxu9u36FyqP/hw0S")
success = sbPrivKey.Append("ADVlmp35/zoPDPZzu1j4FiCo0pJ9LwJcHxeJHopNAKDw9k6I4z/grskdgupsGzK2")
success = sbPrivKey.Append("BiGiQ/+wmmO68/6Xa6KWfpr1PQ6ODJHgzZsdGCVi6Ebaqlj6BbsYWxP6h3lrsGt+")
success = sbPrivKey.Append("LmHBaN2jCD6cDp+lihqFgnm8hfdv0lmbPilp71EDfwKBgQD6U8PBzZtN8yXm5WuS")
success = sbPrivKey.Append("NL+/8q5GjNmeTJBSo1gM6Y8vOT4QAE147LbVuVBDwyHPoSrNejePae6Q14PswjBy")
success = sbPrivKey.Append("T7B8DZ0OeQyGa3trrFg/ib7Vv4ZMvJqX9+WzBrzZsxTg7oCKHzmCR4vIRItKHH3z")
success = sbPrivKey.Append("Wnnhqlo8ic2AZ2O43cdJosbO1wKBgQDe8UODOLu0vnHohOKeUqF3w/ZOB2+83/js")
success = sbPrivKey.Append("YyUbSkzsGvHIwTjObuMUFTQvdMZ6IkIyJdfnDZIbvlBSD8tzL5iKFTNCK2nL1i4G")
success = sbPrivKey.Append("iFr0CYLaHAlhJ5GEbTrTMDoJeBPerZq83HPrSa/Wb0xO18QTWsoVQPFfPFbbcQyI")
success = sbPrivKey.Append("9ryJ2iIDrwKBgQC6kuAefG46ZPVk6K2KZUJdgDUgZC52a75NuW0RAqszmUiGiJM1")
success = sbPrivKey.Append("g8ip9tq6BqAWrprGV0c93shusBKlzf5p1LdHXqYmeVY6gbWVhPipMrNHgN5KJ3BZ")
success = sbPrivKey.Append("v+w1yNnMsErpcxne2HL2hPjMJTpj3GSLkm2xIlTrNhIyl9ydlr7IRUhENQKBgQCv")
success = sbPrivKey.Append("i6HxbXa/90WSJTCcIcxqla8X+dsOCf3jhJ3vQy4Wq5C+1wZ35fCAG8Ifq/+so9Uj")
success = sbPrivKey.Append("z5CVqqXlmpF8TFuSs2OVNuRJsg14J4nOMwgLKIIUZAcurQ10DN5I9Kx+UEK1EFXL")
success = sbPrivKey.Append("aHsORdNjMfgQDO2jn9WHrr9gkg6CdB2+qyoCEfS+mQKBgBW08lcy9V5RzRWb/v/j")
success = sbPrivKey.Append("xsc7ovmgAhCJhDeV7dPbx4HbFeoQJlbA8g1thdcFlcatSGyNDbvNE1GPSd4NhkpR")
success = sbPrivKey.Append("Y6Hfv53kdEzjVkEtU8lUdL7HNVJqX7bU7oZlfbYcwxWQ1Gg8C1oLIAyEt71slQtd")
success = sbPrivKey.Append("RiNYBRZTQe2F0wxbXnuUqLAw")

Dim privKey As New Chilkat.PrivateKey
success = privKey.LoadPem(sbPrivKey.GetAsString())
If (success = False) Then
    System.DebugLog(privKey.LastErrorText)
    Return
End If

Dim rsa As New Chilkat.Rsa
success = rsa.UsePrivateKey(privKey)
If (success = False) Then
    System.DebugLog(rsa.LastErrorText)
    Return
End If

rsa.EncodingMode = "base64"
Dim b64Signature As String
b64Signature = rsa.SignStringENC(sbStringToSign.GetAsString(),"SHA256")

// ----------------------------------------------------------------
// Add the "signature" header.
// 
// The signature header will look like this:
// signature: keyId="1523433508",algorithm="rsa-sha512",headers="date digest x-request-id",signature="y5o7gKxmfA6AT6...blE1A9Q=="
// 
// The keyId is the serial number of the certificate as defined in 'TPP-Signing-Certificate' header, the format should be Integer not hex. 
Dim cert As New Chilkat.Cert
success = cert.SetFromEncoded(sbTppCert.GetAsString())
If (success = False) Then
    System.DebugLog(cert.LastErrorText)
    Return
End If

Dim sbSigHdrVal As New Chilkat.StringBuilder
success = sbSigHdrVal.Append("keyId=""")
success = sbSigHdrVal.Append(cert.SerialDecimal)
success = sbSigHdrVal.Append(""",")
success = sbSigHdrVal.Append("algorithm=""rsa-sha256"",")
success = sbSigHdrVal.Append("headers=""date digest x-request-id"",")
success = sbSigHdrVal.Append("signature=""")
success = sbSigHdrVal.Append(b64Signature)
success = sbSigHdrVal.Append("""")

http.SetRequestHeader "signature",sbSigHdrVal.GetAsString()

// ----------------------------------------------------------------
// Add remaining headers...

http.SetRequestHeader "x-ibm-client-id","YOUR_APP_CLIENT_ID"
http.SetRequestHeader "accept","application/json"

// ----------------------------------------------------------------
// Add our certificate and key for mutual TLS 
// (provide a registered X509 client certificate during TLS handhake)

Dim tlsCert As New Chilkat.Cert
success = tlsCert.LoadFromFile("qa_data/certs_and_keys/ING/example_client_tls.cer")
If (success = False) Then
    System.DebugLog(tlsCert.LastErrorText)
    Return
End If

Dim bdPrivKey As New Chilkat.BinData
success = bdPrivKey.LoadFile("qa_data/certs_and_keys/ING/example_client_tls.key")
If (success = False) Then
    System.DebugLog("Failed to load example_client_tls.key")
    Return
End If

// The OAuth 2.0 client_id for these certificates is e77d776b-90af-4684-bebc-521e5b2614dd. 
// Please note down this client_id since you will need it in the next steps to call the API.

Dim tlsPrivKey As New Chilkat.PrivateKey
success = tlsPrivKey.LoadAnyFormat(bdPrivKey,"")
If (success = False) Then
    System.DebugLog(tlsPrivKey.LastErrorText)
    Return
End If

// Associate the private key with the certificate.
success = tlsCert.SetPrivateKey(tlsPrivKey)
If (success = False) Then
    System.DebugLog(tlsCert.LastErrorText)
    Return
End If

success = http.SetSslClientCert(tlsCert)
If (success = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

// ----------------------------------------------------------------
// Finally, send the request...

Dim sbResponseBody As New Chilkat.StringBuilder
success = http.QuickGetSb("https://api-sandbox.rabobank.nl/openapi/sandbox/payments/account-information/ais/v3/accounts",sbResponseBody)
If (success = False) Then
    System.DebugLog(http.LastErrorText)
    System.DebugLog(sbResponseBody.GetAsString())
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

System.DebugLog("Response Body:")
System.DebugLog(jResp.Emit())

Dim respStatusCode As Int32
respStatusCode = http.LastStatus
System.DebugLog("Response Status Code = " + Str(respStatusCode))
If (respStatusCode >= 400) Then
    System.DebugLog("Response Header:")
    System.DebugLog(http.LastHeader)
    System.DebugLog("Failed.")
    Return
End If

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

// {
//   "accounts": [
//     {
//       "_links": {
//         "account": "/v3/accounts/dW9od2VIVUhGVypIZHVpaGRhdWR3OGRoY",
//         "balances": "/v3/accounts/dW9od2VIVUhGVypIZHVpaGRhdWR3OGRoY/balances",
//         "transactions": "/v3/accounts/dW9od2VIVUhGVypIZHVpaGRhdWR3OGRoY/transactions"
//       },
//       "currency": "EUR",
//       "iban": "NL05RABO0812836782",
//       "name": "Rosie Roy",
//       "resourceId": "dW9od2VIVUhGVypIZHVpaGRhdWR3OGRoY",
//       "status": "enabled"
//     }
//   ]
// }

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

Dim v_linksAccount As String
Dim v_linksBalances As String
Dim v_linksTransactions As String
Dim currency As String
Dim iban As String
Dim name As String
Dim resourceId As String
Dim status As String

Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("accounts")
While i < count_i
    jResp.I = i
    v_linksAccount = jResp.StringOf("accounts[i]._links.account")
    v_linksBalances = jResp.StringOf("accounts[i]._links.balances")
    v_linksTransactions = jResp.StringOf("accounts[i]._links.transactions")
    currency = jResp.StringOf("accounts[i].currency")
    iban = jResp.StringOf("accounts[i].iban")
    name = jResp.StringOf("accounts[i].name")
    resourceId = jResp.StringOf("accounts[i].resourceId")
    status = jResp.StringOf("accounts[i].status")
    i = i + 1
Wend