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

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

 

 

 

(PowerBuilder) 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

integer li_rc
oleobject loo_Http
oleobject loo_Cert
integer li_Success
oleobject loo_PrivKey
oleobject loo_JsonToken
string ls_JsonStr
oleobject loo_JResp
integer li_RespStatusCode
string ls_DataAttributesCountry
string ls_DataAttributesCurrency
string ls_DataAttributesDescription
string ls_DataAttributesFinancialInstitutionBic
string ls_DataAttributesHolderAddress
string ls_DataAttributesHolderAddressCountry
string ls_DataAttributesHolderName
string ls_DataAttributesReference
string ls_DataAttributesReferenceType
string ls_DataId
string ls_DataType

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// 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.
loo_Cert = create oleobject
li_rc = loo_Cert.ConnectToNewObject("Chilkat_9_5_0.Cert")

li_Success = loo_Cert.LoadFromFile("qa_data/pem/my_ibanity_certificate.pem")
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    return
end if

loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat_9_5_0.PrivateKey")

li_Success = loo_PrivKey.LoadEncryptedPemFile("qa_data/pem/my_ibanity_private_key.pem","my_pem_password")
if li_Success = 0 then
    Write-Debug loo_PrivKey.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

li_Success = loo_Cert.SetPrivateKey(loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Cert.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

li_Success = loo_Http.SetSslClientCert(loo_Cert)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    return
end if

// Load the previously obtained access token.
loo_JsonToken = create oleobject
li_rc = loo_JsonToken.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

li_Success = loo_JsonToken.LoadFile("qa_data/tokens/isabel_access_token.json")
if li_Success = 0 then
    Write-Debug "No existing access token."
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    return
end if

// This causes the "Authorization: Bearer ***" header to be added to the HTTP request.
loo_Http.AuthToken = loo_JsonToken.StringOf("access_token")

loo_Http.Accept = "application/vnd.api+json"

loo_Http.SetUrlVar("id","93ecb1fdbfb7848e7b7896c0f2d207aed3d8b4c1")
ls_JsonStr = loo_Http.QuickGetStr("https://api.ibanity.com/isabel-connect/accounts/{$id}")
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.Load(ls_JsonStr)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastResponseHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_Cert
    destroy loo_PrivKey
    destroy loo_JsonToken
    destroy loo_JResp
    return
end if

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

ls_DataAttributesCountry = loo_JResp.StringOf("data.attributes.country")
ls_DataAttributesCurrency = loo_JResp.StringOf("data.attributes.currency")
ls_DataAttributesDescription = loo_JResp.StringOf("data.attributes.description")
ls_DataAttributesFinancialInstitutionBic = loo_JResp.StringOf("data.attributes.financialInstitutionBic")
ls_DataAttributesHolderAddress = loo_JResp.StringOf("data.attributes.holderAddress")
ls_DataAttributesHolderAddressCountry = loo_JResp.StringOf("data.attributes.holderAddressCountry")
ls_DataAttributesHolderName = loo_JResp.StringOf("data.attributes.holderName")
ls_DataAttributesReference = loo_JResp.StringOf("data.attributes.reference")
ls_DataAttributesReferenceType = loo_JResp.StringOf("data.attributes.referenceType")
ls_DataId = loo_JResp.StringOf("data.id")
ls_DataType = loo_JResp.StringOf("data.type")


destroy loo_Http
destroy loo_Cert
destroy loo_PrivKey
destroy loo_JsonToken
destroy loo_JResp

 

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