DataFlex
DataFlex
Xero Update Account
Demonstrates how to update an account in Xero.Note: Requires Chilkat v9.5.0.64 or greater.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoRest
Handle hoXml
String sResponseXml
String sTemp1
Integer iTemp1
Boolean bTemp1
Move False To iSuccess
// 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..
// --------------------------------------------------------------
// The Account to be updated already contains this data:
// <Account>
// <AccountID>afe53f21-1221-451c-a8c4-08457e129d84</AccountID>
// <Code>160</Code>
// <Name>Computer Equipment</Name>
// <Status>ACTIVE</Status>
// <Type>FIXED</Type>
// <TaxType>TAX002</TaxType>
// <Description>Computer equipment that is owned and controlled by the business</Description>
// <Class>ASSET</Class>
// <EnablePaymentsToAccount>false</EnablePaymentsToAccount>
// <ShowInExpenseClaims>true</ShowInExpenseClaims>
// <ReportingCode>ASS</ReportingCode>
// <ReportingCodeName>Assets</ReportingCodeName>
// <HasAttachments>false</HasAttachments>
// <UpdatedDateUTC>2016-10-15T22:22:44.53</UpdatedDateUTC>
// </Account>
// --------------------------------------------------------------
// Build the XML to update the description
Get Create (RefClass(cComChilkatXml)) To hoXml
If (Not(IsComObjectCreated(hoXml))) Begin
Send CreateComObject of hoXml
End
Set ComTag Of hoXml To "Account"
Send ComNewChild2 To hoXml "AccountID" "afe53f21-1221-451c-a8c4-08457e129d84"
Send ComNewChild2 To hoXml "Description" "Computer equipment owned by the business."
Set ComEmitCompact Of hoXml To True
// Do not emit the XML declarator. Xero does not accept the XML if it
// has the initial line: <?xml version="1.0" encoding="utf-8"?>
Set ComEmitXmlDecl Of hoXml To False
Get ComGetXml Of hoXml To sTemp1
Get ComAddQueryParam Of hoRest "xml" sTemp1 To iSuccess
// Use a POST to update (a PUT is to create)
Get ComFullRequestFormUrlEncoded Of hoRest "POST" "/api.xro/2.0/Accounts" To sResponseXml
Get ComLastMethodSuccess Of hoRest To bTemp1
If (bTemp1 <> 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
Showln sResponseXml
Procedure_Return
End
// Examine the XML response
Showln sResponseXml
// A successful XML response is as follows:
// <Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
// <Id>8efc8fb9-1f78-438c-a2d3-46954bb82183</Id>
// <Status>OK</Status>
// <ProviderName>ChilkatPrivate</ProviderName>
// <DateTimeUTC>2016-11-11T02:24:01.1692715Z</DateTimeUTC>
// <Accounts>
// <Account>
// <AccountID>afe53f21-1221-451c-a8c4-08457e129d84</AccountID>
// <Code>160</Code>
// <Name>Computer Equipment</Name>
// <Status>ACTIVE</Status>
// <Type>FIXED</Type>
// <TaxType>TAX002</TaxType>
// <Description>Computer equipment owned by the business.</Description>
// <Class>ASSET</Class>
// <EnablePaymentsToAccount>false</EnablePaymentsToAccount>
// <ShowInExpenseClaims>false</ShowInExpenseClaims>
// <ReportingCode>ASS</ReportingCode>
// <ReportingCodeName>Assets</ReportingCodeName>
// <UpdatedDateUTC>2016-11-11T02:24:01.3</UpdatedDateUTC>
// </Account>
// </Accounts>
// </Response>
End_Procedure