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

Perl 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

 

 

 

(Perl) Xero Get Accounts using REST API

Demonstrates how to get the Accounts using the Chilkat REST library.

Note: Requires Chilkat v9.5.0.64 or greater.

Chilkat Perl Downloads

Perl Module for Windows, MacOS, Linux, Alpine Linux, Solaris

use chilkat();

# Note: Requires Chilkat v9.5.0.64 or greater.

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

$rest = chilkat::CkRest->new();

# Before sending REST API calls, the REST object needs to be
# initialized for OAuth1.
# See Xero 2-Legged OAuth1 Setup for sample code.

# Assuming the REST object's OAuth1 authenticator is setup, and the initial
# connection was made, we may now send REST HTTP requests..

# Get the full list of accounts.
$sbXml = chilkat::CkStringBuilder->new();
$success = $rest->FullRequestNoBodySb("GET","/api.xro/2.0/Accounts",$sbXml);
if ($success != 1) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

# A 200 response is expected for actual success.
if ($rest->get_ResponseStatusCode() != 200) {
    print $sbXml->getAsString() . "\r\n";
    exit;
}

# Iterate over the accounts and get some information..

$bAutoTrim = 0;
$xml = chilkat::CkXml->new();
$xml->LoadSb($sbXml,$bAutoTrim);
$xml->SaveXml("qa_cache/xero_accounts.xml");

# How many accounts exist?
$numAccounts = $xml->NumChildrenAt("Accounts");
print "numAccounts = " . $numAccounts . "\r\n";

$i = 0;
while ($i < $numAccounts) {
    $xml->put_I($i);
    print "AccountID: " . $xml->getChildContent("Accounts|Account[i]|AccountID") . "\r\n";
    print "Name: " . $xml->getChildContent("Accounts|Account[i]|Name") . "\r\n";
    print "Code: " . $xml->GetChildIntValue("Accounts|Account[i]|Code") . "\r\n";
    print "EnablePaymentsToAccount: " . $xml->GetChildBoolValue("Accounts|Account[i]|EnablePaymentsToAccount") . "\r\n";
    print "----" . "\r\n";
    $i = $i + 1;
}

# The output looks like this:

# 	numAccounts = 69
# 	AccountID: ceef66a5-a545-413b-9312-78a53caadbc4
# 	Name: Checking Account
# 	Code: 90
# 	EnablePaymentsToAccount: False
# 	----
# 	AccountID: 3d09fd49-434d-4c18-a57b-831663ab70d2
# 	Name: Savings Account
# 	Code: 91
# 	EnablePaymentsToAccount: False
# 	----
# 	AccountID: 5f5e1b00-5331-4ee5-bc84-39dbd9a27db3
# 	Name: Accounts Receivable
# 	Code: 120
# 	EnablePaymentsToAccount: False
# 	----
# 	AccountID: b0a23f8d-1b6d-4209-96f9-8046f794e1f4
# 	Name: Prepayments
# 	Code: 130
# 	EnablePaymentsToAccount: False
# 	----
# 	...

# The xero_accounts.xml file contains data that looks like this:

# 	<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
# 	  <Id>409d062b-d3c2-4062-99a6-31b7c1c14662</Id>
# 	  <Status>OK</Status>
# 	  <ProviderName>ChilkatPrivate</ProviderName>
# 	  <DateTimeUTC>2016-11-01T22:30:13.3606258Z</DateTimeUTC>
# 	  <Accounts>
# 	    <Account>
# 	      <AccountID>ceef66a5-a545-413b-9312-78a53caadbc4</AccountID>
# 	      <Code>090</Code>
# 	      <Name>Checking Account</Name>
# 	      <Status>ACTIVE</Status>
# 	      <Type>BANK</Type>
# 	      <TaxType>NONE</TaxType>
# 	      <Class>ASSET</Class>
# 	      <EnablePaymentsToAccount>false</EnablePaymentsToAccount>
# 	      <ShowInExpenseClaims>false</ShowInExpenseClaims>
# 	      <BankAccountNumber>132435465</BankAccountNumber>
# 	      <BankAccountType>BANK</BankAccountType>
# 	      <CurrencyCode>USD</CurrencyCode>
# 	      <ReportingCode>ASS</ReportingCode>
# 	      <ReportingCodeName>Assets</ReportingCodeName>
# 	      <HasAttachments>false</HasAttachments>
# 	      <UpdatedDateUTC>2016-10-15T22:22:44.53</UpdatedDateUTC>
# 	    </Account>
# 	    <Account>
# 	      <AccountID>3d09fd49-434d-4c18-a57b-831663ab70d2</AccountID>
# 	      <Code>091</Code>
# 	      <Name>Savings Account</Name>
# 	      <Status>ACTIVE</Status>
# 	      <Type>BANK</Type>
# 	      <TaxType>NONE</TaxType>
# 	      <Class>ASSET</Class>
# 	      <EnablePaymentsToAccount>false</EnablePaymentsToAccount>
# 	      <ShowInExpenseClaims>false</ShowInExpenseClaims>
# 	      <BankAccountNumber>987654321</BankAccountNumber>
# 	      <BankAccountType>BANK</BankAccountType>
# 	      <CurrencyCode>USD</CurrencyCode>
# 	      <ReportingCode>ASS</ReportingCode>
# 	      <HasAttachments>false</HasAttachments>
# 	      <UpdatedDateUTC>2016-10-15T22:22:44.53</UpdatedDateUTC>
# 	    </Account>
# 	    ...
# 

 

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