Sample code for 30+ languages & platforms
Swift

Ibanity XS2A List Financial Institutions

See more Ibanity Examples

Demonstrates how to send a request to get a list of financial institutions.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

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

    //  Send the following request:

    // $ curl -X GET https://api.ibanity.com/xs2a/financial-institutions \
    // --cert certificate.pem \
    // --key private_key.pem \
    // -H 'Signature: keyId="75b5d796-de5c-400a-81ce-e72371b01cbc",created=1599659223,algorithm="hs2019",headers="(request-target) digest (created) host",signature="BASE64(RSA-SHA256(SIGNING_STRING))"' \
    // -H 'Digest: SHA-512=beDaRguyEb8fhh5wnl37bOTDtvhuYZyZNkTZ9LiC9Wc='

    // 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.)
    let cert = CkoCert()!
    success = cert.loadPfxFile(path: "qa_data/pfx/my_ibanity_certificate.pfx", password: "my_pfx_password")
    if success == false {
        print("\(cert.lastErrorText!)")
        return
    }

    // We need to calculate the Digest and Signature header fields.
    // For a detailed explanation, see Calculate Ibanity HTTP Signature Example

    // We'll just write the code here as briefly as possible.

    let dtNow = CkoDateTime()!
    dtNow.setFromCurrentSystemTime()
    var created: String? = dtNow.get(asUnixTimeStr: false)

    let crypt2 = CkoCrypt2()!
    crypt2.hashAlgorithm = "sha512"
    crypt2.encodingMode = "base64"

    let sbDigestHdrValue = CkoStringBuilder()!
    sbDigestHdrValue.append(value: "SHA-512=")
    // GET requests have empty payloads.  The SHA-512 hash of the empty string is the same for all GET requests.
    // Therefore all GET requests will use "z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg=="
    // You can eliminate the explicit hash computation (for GET requests) and simply use the above literal string.
    sbDigestHdrValue.append(value: crypt2.hashStringENC(str: ""))

    print("Generated Digest")
    print("\(sbDigestHdrValue.getAsString()!)")

    var request_target: String? = "get /xs2a/financial-institutions"

    let sbSigningString = CkoStringBuilder()!
    sbSigningString.append(value: "(request-target): ")
    sbSigningString.appendLine(str: request_target, crlf: false)
    sbSigningString.append(value: "host: ")
    sbSigningString.appendLine(str: "api.ibanity.com", crlf: false)
    sbSigningString.append(value: "digest: ")
    sbSigningString.appendLine(str: sbDigestHdrValue.getAsString(), crlf: false)
    sbSigningString.append(value: "(created): ")
    sbSigningString.append(value: created)
    // ibanity-idempotency-key is not used with GET requests.

    print("Signing String:")
    print("\(sbSigningString.getAsString()!)")

    var signed_headers_list: String? = "(request-target) host digest (created)"

    let privKey = CkoPrivateKey()!
    success = privKey.loadEncryptedPemFile(path: "my_ibanity_signature_private_key.pem", password: "pem_password")
    if success == false {
        print("\(privKey.lastErrorText!)")
        return
    }

    let rsa = CkoRsa()!
    rsa.pssSaltLen = 32
    rsa.encodingMode = "base64"
    // Use the RSASSA-PSS signature algorithm
    rsa.pkcsPadding = false

    success = rsa.usePrivateKey(privKey: privKey)
    if success == false {
        print("\(rsa.lastErrorText!)")
        return
    }

    // Sign the signing string.
    var sigBase64: String? = rsa.signStringENC(str: sbSigningString.getAsString(), hashAlg: "sha-256")
    if rsa.lastMethodSuccess == false {
        print("\(rsa.lastErrorText!)")
        return
    }

    print("Signature:")
    print("\(sigBase64!)")

    // Build the signature header value.
    let sbSigHeaderValue = CkoStringBuilder()!
    sbSigHeaderValue.append(value: "keyId=\"")
    // Use your identifier for the application's signature certificate, obtained from the Developer Portal
    sbSigHeaderValue.append(value: "a0ce296d-84c8-4bd5-8eb4-de0339950cfa")
    sbSigHeaderValue.append(value: "\",created=")
    sbSigHeaderValue.append(value: created)
    sbSigHeaderValue.append(value: ",algorithm=\"hs2019\",headers=\"")
    sbSigHeaderValue.append(value: signed_headers_list)
    sbSigHeaderValue.append(value: "\",signature=\"")
    sbSigHeaderValue.append(value: sigBase64)
    sbSigHeaderValue.append(value: "\"")

    // Send the GET request..
    let http = CkoHttp()!

    success = http.setSslClientCert(cert: cert)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    http.setRequestHeader(name: "Signature", value: sbSigHeaderValue.getAsString())
    http.setRequestHeader(name: "Digest", value: sbDigestHdrValue.getAsString())

    let sbResponseBody = CkoStringBuilder()!
    success = http.quickGetSb(url: "https://api.ibanity.com/xs2a/financial-institutions", sbContent: sbResponseBody)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let jResp = CkoJsonObject()!
    jResp.loadSb(sb: sbResponseBody)
    jResp.emitCompact = false

    print("Response Body:")
    print("\(jResp.emit()!)")

    var respStatusCode: Int = http.lastStatus.intValue
    print("Response Status Code = \(respStatusCode)")
    if respStatusCode >= 400 {
        print("Response Header:")
        print("\(http.lastHeader!)")
        print("Failed.")
        return
    }

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

    // {
    //   "data": [
    //     {
    //       "attributes": {
    //         "authorizationModels": [
    //           "detailed",
    //           "financialInstitutionOffered"
    //         ],
    //         "bic": "NBBEBEBB203",
    //         "bulkPaymentsEnabled": true,
    //         "bulkPaymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "country": null,
    //         "financialInstitutionCustomerReferenceRequired": false,
    //         "futureDatedPaymentsAllowed": true,
    //         "logoUrl": "https://s3.eu-central-1.amazonaws.com/ibanity-production-financial-institution-assets/sandbox.png",
    //         "maintenanceFrom": null,
    //         "maintenanceTo": null,
    //         "maintenanceType": null,
    //         "maxRequestedAccountReferences": null,
    //         "minRequestedAccountReferences": 0,
    //         "name": "Bogus Financial",
    //         "paymentsEnabled": true,
    //         "paymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "periodicPaymentsEnabled": true,
    //         "periodicPaymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "primaryColor": "#7d39ff",
    //         "requiresCredentialStorage": false,
    //         "requiresCustomerIpAddress": false,
    //         "sandbox": true,
    //         "secondaryColor": "#3DF2C2",
    //         "sharedBrandName": null,
    //         "sharedBrandReference": null,
    //         "status": "beta"
    //       },
    //       "id": "2d3d70a4-cb3c-477c-97e1-cbe495b82841",
    //       "links": {
    //         "self": "https://api.ibanity.com/xs2a/financial-institutions/2d3d70a4-cb3c-477c-97e1-cbe495b82841"
    //       },
    //       "type": "financialInstitution"
    //     },
    //     {
    //       "attributes": {
    //         "authorizationModels": [
    //           "detailed",
    //           "financialInstitutionOffered"
    //         ],
    //         "bic": "NBBEBEBB203",
    //         "bulkPaymentsEnabled": true,
    //         "bulkPaymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "country": null,
    //         "financialInstitutionCustomerReferenceRequired": false,
    //         "futureDatedPaymentsAllowed": true,
    //         "logoUrl": "https://s3.eu-central-1.amazonaws.com/ibanity-production-financial-institution-assets/sandbox.png",
    //         "maintenanceFrom": null,
    //         "maintenanceTo": null,
    //         "maintenanceType": null,
    //         "maxRequestedAccountReferences": null,
    //         "minRequestedAccountReferences": 0,
    //         "name": "XYZ Trust",
    //         "paymentsEnabled": true,
    //         "paymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "periodicPaymentsEnabled": true,
    //         "periodicPaymentsProductTypes": [
    //           "sepaCreditTransfer"
    //         ],
    //         "primaryColor": "#7d39ff",
    //         "requiresCredentialStorage": false,
    //         "requiresCustomerIpAddress": false,
    //         "sandbox": true,
    //         "secondaryColor": "#3DF2C2",
    //         "sharedBrandName": null,
    //         "sharedBrandReference": null,
    //         "status": "beta"
    //       },
    //       "id": "d4100f28-936b-4379-a3f8-86314a2014fb",
    //       "links": {
    //         "self": "https://api.ibanity.com/xs2a/financial-institutions/d4100f28-936b-4379-a3f8-86314a2014fb"
    //       },
    //       "type": "financialInstitution"
    //     }
    //   ],
    //   "links": {
    //     "first": "https://api.ibanity.com/xs2a/financial-institutions"
    //   },
    //   "meta": {
    //     "paging": {
    //       "limit": 10
    //     }
    //   }
    // }

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

    var attributesBic: String?
    var attributesBulkPaymentsEnabled: Bool
    var attributesCountry: String?
    var attributesFinancialInstitutionCustomerReferenceRequired: Bool
    var attributesFutureDatedPaymentsAllowed: Bool
    var attributesLogoUrl: String?
    var attributesMaintenanceFrom: String?
    var attributesMaintenanceTo: String?
    var attributesMaintenanceType: String?
    var attributesMaxRequestedAccountReferences: String?
    var attributesMinRequestedAccountReferences: Int
    var attributesName: String?
    var attributesPaymentsEnabled: Bool
    var attributesPeriodicPaymentsEnabled: Bool
    var attributesPrimaryColor: String?
    var attributesRequiresCredentialStorage: Bool
    var attributesRequiresCustomerIpAddress: Bool
    var attributesSandbox: Bool
    var attributesSecondaryColor: String?
    var attributesSharedBrandName: String?
    var attributesSharedBrandReference: String?
    var attributesStatus: String?
    var id: String?
    var linksSelf: String?
    var v_type: String?
    var j: Int
    var count_j: Int
    var strVal: String?

    var linksFirst: String? = jResp.string(of: "links.first")
    var metaPagingLimit: Int = jResp.int(of: "meta.paging.limit").intValue
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "data").intValue
    while i < count_i {
        jResp.i = i
        attributesBic = jResp.string(of: "data[i].attributes.bic")
        attributesBulkPaymentsEnabled = jResp.bool(of: "data[i].attributes.bulkPaymentsEnabled")
        attributesCountry = jResp.string(of: "data[i].attributes.country")
        attributesFinancialInstitutionCustomerReferenceRequired = jResp.bool(of: "data[i].attributes.financialInstitutionCustomerReferenceRequired")
        attributesFutureDatedPaymentsAllowed = jResp.bool(of: "data[i].attributes.futureDatedPaymentsAllowed")
        attributesLogoUrl = jResp.string(of: "data[i].attributes.logoUrl")
        attributesMaintenanceFrom = jResp.string(of: "data[i].attributes.maintenanceFrom")
        attributesMaintenanceTo = jResp.string(of: "data[i].attributes.maintenanceTo")
        attributesMaintenanceType = jResp.string(of: "data[i].attributes.maintenanceType")
        attributesMaxRequestedAccountReferences = jResp.string(of: "data[i].attributes.maxRequestedAccountReferences")
        attributesMinRequestedAccountReferences = jResp.int(of: "data[i].attributes.minRequestedAccountReferences").intValue
        attributesName = jResp.string(of: "data[i].attributes.name")
        attributesPaymentsEnabled = jResp.bool(of: "data[i].attributes.paymentsEnabled")
        attributesPeriodicPaymentsEnabled = jResp.bool(of: "data[i].attributes.periodicPaymentsEnabled")
        attributesPrimaryColor = jResp.string(of: "data[i].attributes.primaryColor")
        attributesRequiresCredentialStorage = jResp.bool(of: "data[i].attributes.requiresCredentialStorage")
        attributesRequiresCustomerIpAddress = jResp.bool(of: "data[i].attributes.requiresCustomerIpAddress")
        attributesSandbox = jResp.bool(of: "data[i].attributes.sandbox")
        attributesSecondaryColor = jResp.string(of: "data[i].attributes.secondaryColor")
        attributesSharedBrandName = jResp.string(of: "data[i].attributes.sharedBrandName")
        attributesSharedBrandReference = jResp.string(of: "data[i].attributes.sharedBrandReference")
        attributesStatus = jResp.string(of: "data[i].attributes.status")
        id = jResp.string(of: "data[i].id")
        linksSelf = jResp.string(of: "data[i].links.self")
        v_type = jResp.string(of: "data[i].type")
        j = 0
        count_j = jResp.size(ofArray: "data[i].attributes.authorizationModels").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "data[i].attributes.authorizationModels[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "data[i].attributes.bulkPaymentsProductTypes").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "data[i].attributes.bulkPaymentsProductTypes[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "data[i].attributes.paymentsProductTypes").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "data[i].attributes.paymentsProductTypes[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "data[i].attributes.periodicPaymentsProductTypes").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "data[i].attributes.periodicPaymentsProductTypes[j]")
            j = j + 1
        }

        i = i + 1
    }


}