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
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) Xero Get Receipts

Demonstrates how to get all receipts from Xero accounting.

Note: This example requires Chilkat v9.5.0.64 or greater.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoRest
    Boolean iSuccess
    Variant vSbXml
    Handle hoSbXml
    Boolean iBAutoTrim
    Handle hoXml
    Integer iRecordCount
    Integer i
    String sTemp1
    Integer iTemp1

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

    Get Create (RefClass(cComChilkatRest)) To hoRest
    If (Not(IsComObjectCreated(hoRest))) Begin
        Send CreateComObject of hoRest
    End

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

    // Note: If query parameters are to be included, they can be added by calling
    // the rest.AddQueryParam method, once per query parameter name/value.
    // Do not try to add the query params to the uriPath passed to a method such as FullRequestNoBodySb.
    // The reason is that OAuth1 needs to include the query params as part of the OAuth1 signature,
    // and the only way it knows about them is if they are explicitly added by calling AddQueryParam.
    // (Otherwise you'll get a 403 authentication error response.)

    // Get the full list of receipts.
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbXml
    If (Not(IsComObjectCreated(hoSbXml))) Begin
        Send CreateComObject of hoSbXml
    End
    Get pvComObject of hoSbXml to vSbXml
    Get ComFullRequestNoBodySb Of hoRest "GET" "/api.xro/2.0/Receipts" vSbXml To iSuccess
    If (iSuccess <> True) Begin
        Get ComLastErrorText Of hoRest To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // A 200 response is expected for actual success.
    Get ComResponseStatusCode Of hoRest To iTemp1
    If (iTemp1 <> 200) Begin
        Get ComGetAsString Of hoSbXml To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Iterate over the receipts and get some information..

    Move False To iBAutoTrim
    Get Create (RefClass(cComChilkatXml)) To hoXml
    If (Not(IsComObjectCreated(hoXml))) Begin
        Send CreateComObject of hoXml
    End
    Get pvComObject of hoSbXml to vSbXml
    Get ComLoadSb Of hoXml vSbXml iBAutoTrim To iSuccess
    Get ComSaveXml Of hoXml "qa_cache/xero_receipts.xml" To iSuccess

    // How many records exist?
    Get ComNumChildrenAt Of hoXml "Receipts" To iRecordCount
    Showln "numRecords = " iRecordCount

    Move 0 To i
    While (i < iRecordCount)
        Set ComI Of hoXml To i
        Get ComGetChildContent Of hoXml "Receipts|Receipt[i]|ReceiptID" To sTemp1
        Showln "ReceiptID: " sTemp1
        Get ComGetChildContent Of hoXml "Receipts|Receipt[i]|User|UserID" To sTemp1
        Showln "UserID: " sTemp1
        Get ComGetChildIntValue Of hoXml "Receipts|Receipt[i]|ReceiptNumber" To iTemp1
        Showln "ReceiptNumber: " iTemp1
        Showln "----"
        Move (i + 1) To i
    Loop

    // The output looks like this:

    // 	numRecords = 2
    // 	ReceiptID: c4f40e59-c390-0001-caff-ce731c707d00
    // 	UserID: d6362594-ffec-4435-abe8-469941ff1501
    // 	ReceiptNumber: 2
    // 	----
    // 	ReceiptID: 9387dc5d-2adf-4d77-84e1-db693db502bd
    // 	UserID: d6362594-ffec-4435-abe8-469941ff1501
    // 	ReceiptNumber: 1
    // 	----

    // The xero_receipts.xml file contains data that looks like this:

    // <?xml version="1.0" encoding="utf-8" ?>
    // <Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    //     <Id>baf5d149-11de-4ba4-ba25-e8729d863812</Id>
    //     <Status>OK</Status>
    //     <ProviderName>ChilkatPrivate</ProviderName>
    //     <DateTimeUTC>2016-11-11T14:03:25.5756186Z</DateTimeUTC>
    //     <Receipts>
    //         <Receipt>
    //             <ReceiptID>c4f40e59-c390-0001-caff-ce731c707d00</ReceiptID>
    //             <ReceiptNumber>2</ReceiptNumber>
    //             <Status>DRAFT</Status>
    //             <User>
    //                 <UserID>d6362594-ffec-4435-abe8-469941ff1501</UserID>
    //                 <FirstName>Matthew</FirstName>
    //                 <LastName>Smith</LastName>
    //             </User>
    //             <Contact>
    //                 <ContactID>f817d079-80ba-4a4f-8b57-6171c0cdd14c</ContactID>
    //                 <Name>Epicenter Cafe</Name>
    //             </Contact>
    //             <Date>2016-10-13T00:00:00</Date>
    //             <UpdatedDateUTC>2011-10-07T20:45:16.153</UpdatedDateUTC>
    //             <LineAmountTypes>Inclusive</LineAmountTypes>
    //             <SubTotal>0.00</SubTotal>
    //             <TotalTax>0.00</TotalTax>
    //             <Total>0.00</Total>
    //             <HasAttachments>false</HasAttachments>
    //         </Receipt>
    //         <Receipt>
    //             <ReceiptID>9387dc5d-2adf-4d77-84e1-db693db502bd</ReceiptID>
    //             <ReceiptNumber>1</ReceiptNumber>
    //             <Status>DRAFT</Status>
    //             <User>
    //                 <UserID>d6362594-ffec-4435-abe8-469941ff1501</UserID>
    //                 <FirstName>Matthew</FirstName>
    //                 <LastName>Smith</LastName>
    //             </User>
    //             <Contact>
    //                 <ContactID>6a31faab-588e-46a1-be9a-bd6d1dd468df</ContactID>
    //                 <Name>Woolworths Market</Name>
    //             </Contact>
    //             <Date>2016-10-11T00:00:00</Date>
    //             <UpdatedDateUTC>2016-06-24T17:15:05.337</UpdatedDateUTC>
    //             <LineAmountTypes>Inclusive</LineAmountTypes>
    //             <SubTotal>35.20</SubTotal>
    //             <TotalTax>0.00</TotalTax>
    //             <Total>35.20</Total>
    //             <HasAttachments>false</HasAttachments>
    //         </Receipt>
    //     </Receipts>
    // </Response>


End_Procedure

 

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