Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Google Vision
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun

Mastercard
MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(DataFlex) Isabel Connect Get Account

See more Ibanity Examples

Get the details for a specific account.

For more information, see https://documentation.ibanity.com/isabel-connect/api#get-account

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Variant vCert
    Handle hoCert
    Boolean iSuccess
    Variant vPrivKey
    Handle hoPrivKey
    Handle hoJsonToken
    String sJsonStr
    Handle hoJResp
    Integer iRespStatusCode
    String sDataAttributesCountry
    String sDataAttributesCurrency
    String sDataAttributesDescription
    String sDataAttributesFinancialInstitutionBic
    String sDataAttributesHolderAddress
    String sDataAttributesHolderAddressCountry
    String sDataAttributesHolderName
    String sDataAttributesReference
    String sDataAttributesReferenceType
    String sDataId
    String sDataType
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // 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.
    Get Create (RefClass(cComChilkatCert)) To hoCert
    If (Not(IsComObjectCreated(hoCert))) Begin
        Send CreateComObject of hoCert
    End
    Get ComLoadFromFile Of hoCert "qa_data/pem/my_ibanity_certificate.pem" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoCert To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatPrivateKey)) To hoPrivKey
    If (Not(IsComObjectCreated(hoPrivKey))) Begin
        Send CreateComObject of hoPrivKey
    End
    Get ComLoadEncryptedPemFile Of hoPrivKey "qa_data/pem/my_ibanity_private_key.pem" "my_pem_password" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoPrivKey To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get pvComObject of hoPrivKey to vPrivKey
    Get ComSetPrivateKey Of hoCert vPrivKey To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoCert To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get pvComObject of hoCert to vCert
    Get ComSetSslClientCert Of hoHttp vCert To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Load the previously obtained access token.
    Get Create (RefClass(cComChilkatJsonObject)) To hoJsonToken
    If (Not(IsComObjectCreated(hoJsonToken))) Begin
        Send CreateComObject of hoJsonToken
    End
    Get ComLoadFile Of hoJsonToken "qa_data/tokens/isabel_access_token.json" To iSuccess
    If (iSuccess = False) Begin
        Showln "No existing access token."
        Procedure_Return
    End

    // This causes the "Authorization: Bearer ***" header to be added to the HTTP request.
    Get ComStringOf Of hoJsonToken "access_token" To sTemp1
    Set ComAuthToken Of hoHttp To sTemp1

    Set ComAccept Of hoHttp To "application/vnd.api+json"

    Get ComSetUrlVar Of hoHttp "id" "93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1" To iSuccess
    Get ComQuickGetStr Of hoHttp "https://api.ibanity.com/isabel-connect/accounts/{$id}" To sJsonStr
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get ComLoad Of hoJResp sJsonStr To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComLastStatus Of hoHttp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComLastResponseHeader Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

    // 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

    Get ComStringOf Of hoJResp "data.attributes.country" To sDataAttributesCountry
    Get ComStringOf Of hoJResp "data.attributes.currency" To sDataAttributesCurrency
    Get ComStringOf Of hoJResp "data.attributes.description" To sDataAttributesDescription
    Get ComStringOf Of hoJResp "data.attributes.financialInstitutionBic" To sDataAttributesFinancialInstitutionBic
    Get ComStringOf Of hoJResp "data.attributes.holderAddress" To sDataAttributesHolderAddress
    Get ComStringOf Of hoJResp "data.attributes.holderAddressCountry" To sDataAttributesHolderAddressCountry
    Get ComStringOf Of hoJResp "data.attributes.holderName" To sDataAttributesHolderName
    Get ComStringOf Of hoJResp "data.attributes.reference" To sDataAttributesReference
    Get ComStringOf Of hoJResp "data.attributes.referenceType" To sDataAttributesReferenceType
    Get ComStringOf Of hoJResp "data.id" To sDataId
    Get ComStringOf Of hoJResp "data.type" To sDataType


End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.