Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Isabel Connect List TransactionsSee more Ibanity ExamplesGet a list of transactions for an account. For more information, see https://documentation.ibanity.com/isabel-connect/api#list-accounts
integer li_rc oleobject loo_Http integer li_Success oleobject loo_JsonToken string ls_JsonStr oleobject loo_JResp integer li_RespStatusCode integer li_AttributesAmount string ls_AttributesCounterpartAccountReference string ls_AttributesCounterpartFinancialInstitutionBic string ls_AttributesCounterpartName string ls_AttributesEndToEndId string ls_AttributesExecutionDate string ls_AttributesInternalId string ls_AttributesRemittanceInformation string ls_AttributesRemittanceInformationType string ls_AttributesStatus string ls_AttributesValueDate string ls_Id string ls_V_type integer li_MetaPagingOffset integer li_MetaPagingTotal integer i integer li_Count_i // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.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/transactions \ // --cert certificate.pem:qwertyuiop1 \ // --key private_key.pem \ // -H "Authorization: Bearer access_token_1603365408" \ // -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.) li_Success = loo_Http.SetSslClientCertPfx("qa_data/pfx/my_ibanity_certificate.pfx","my_pfx_password") if li_Success = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http return end if // Load the previously obtained access token. loo_JsonToken = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JsonToken.ConnectToNewObject("Chilkat.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_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}/transactions") if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_JsonToken return end if loo_JResp = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JResp.ConnectToNewObject("Chilkat.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_JsonToken destroy loo_JResp return end if // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "data": [ // { // "attributes": { // "amount": 80000, // "counterpartAccountReference": "BE21210123456703", // "counterpartFinancialInstitutionBic": "GEBABEBB", // "counterpartName": "MYBESTCLIENT", // "endToEndId": "UNIQUE CODE CUSTOMER", // "executionDate": "2018-10-15T08:34:17.417Z", // "internalId": "UNIQUE CODE BANK", // "remittanceInformation": "123456789002", // "remittanceInformationType": "structured-be", // "status": "Booked", // "valueDate": "2018-10-15T08:52:43.962Z" // }, // "id": "14e2bff5-e365-4bc7-bf48-76b7bcd464e9", // "type": "transaction" // }, // { // "attributes": { // "amount": 40000, // "counterpartAccountReference": "BE58400101010179", // "counterpartFinancialInstitutionBic": "KREDBEBB", // "counterpartName": "MYGOODCLIENT", // "endToEndId": null, // "executionDate": "2018-10-15T08:34:17.417Z", // "internalId": null, // "remittanceInformation": "FREE COMMUNICATION", // "remittanceInformationType": "unstructured", // "status": "Booked", // "valueDate": "2018-10-15T08:52:43.962Z" // }, // "id": "29b0f52e-a389-4ff8-88e1-cc30c12b789f", // "type": "transaction" // }, // { // "attributes": { // "amount": -20000, // "counterpartAccountReference": "BE56300694353788", // "counterpartFinancialInstitutionBic": null, // "counterpartName": "MY SUPPLIER", // "endToEndId": null, // "executionDate": "2018-10-15T08:34:17.417Z", // "internalId": null, // "remittanceInformation": "999000000171", // "remittanceInformationType": "structured-be", // "status": "Booked", // "valueDate": "2018-10-15T08:52:43.962Z" // }, // "id": "7d79a28e-b45d-4595-b98e-7c18871ee208", // "type": "transaction" // } // ], // "meta": { // "paging": { // "offset": 0, // "total": 3 // } // } // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON li_MetaPagingOffset = loo_JResp.IntOf("meta.paging.offset") li_MetaPagingTotal = loo_JResp.IntOf("meta.paging.total") i = 0 li_Count_i = loo_JResp.SizeOfArray("data") do while i < li_Count_i loo_JResp.I = i li_AttributesAmount = loo_JResp.IntOf("data[i].attributes.amount") ls_AttributesCounterpartAccountReference = loo_JResp.StringOf("data[i].attributes.counterpartAccountReference") ls_AttributesCounterpartFinancialInstitutionBic = loo_JResp.StringOf("data[i].attributes.counterpartFinancialInstitutionBic") ls_AttributesCounterpartName = loo_JResp.StringOf("data[i].attributes.counterpartName") ls_AttributesEndToEndId = loo_JResp.StringOf("data[i].attributes.endToEndId") ls_AttributesExecutionDate = loo_JResp.StringOf("data[i].attributes.executionDate") ls_AttributesInternalId = loo_JResp.StringOf("data[i].attributes.internalId") ls_AttributesRemittanceInformation = loo_JResp.StringOf("data[i].attributes.remittanceInformation") ls_AttributesRemittanceInformationType = loo_JResp.StringOf("data[i].attributes.remittanceInformationType") ls_AttributesStatus = loo_JResp.StringOf("data[i].attributes.status") ls_AttributesValueDate = loo_JResp.StringOf("data[i].attributes.valueDate") ls_Id = loo_JResp.StringOf("data[i].id") ls_V_type = loo_JResp.StringOf("data[i].type") i = i + 1 loop destroy loo_Http destroy loo_JsonToken destroy loo_JResp |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.