![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) Xero Upload AttachmentUpload an attachment. (POST an attachment). Note: Requires Chilkat v9.5.0.64 or greater.
LOCAL loRest LOCAL lnSuccess LOCAL lcEndPoint LOCAL lcReceiptID LOCAL lcFilename LOCAL loSbPath LOCAL lnNumReplaced LOCAL loJpgData LOCAL loJpgDataFromWeb LOCAL loHttp LOCAL loSbResponseBody * 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. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Rest') loRest = CreateObject('Chilkat.Rest') * 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.. * -------------------------------------------------------------- * This example will upload an image attachment to a receipt. lcEndPoint = "Receipts" lcReceiptID = "c4f40e59-c390-0001-caff-ce731c707d00" * This JPG image can be downloaded from https://www.chilkatsoft.com/syncedImages/penguins.jpg lcFilename = "penguins.jpg" * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbPath = CreateObject('Chilkat.StringBuilder') loSbPath.Append("/api.xro/2.0/{Endpoint}/{Guid}/Attachments/{Filename}") lnNumReplaced = loSbPath.Replace("{Endpoint}",lcEndPoint) lnNumReplaced = loSbPath.Replace("{Guid}",lcReceiptID) lnNumReplaced = loSbPath.Replace("{Filename}",lcFilename) loRest.AddHeader("Content-Type","image/jpeg") * Load the JPG image from a file. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.BinData') loJpgData = CreateObject('Chilkat.BinData') lnSuccess = loJpgData.LoadFile("qa_data/jpg/penguins.jpg") * We could alternatively get it from a URL like this: * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.BinData') loJpgDataFromWeb = CreateObject('Chilkat.BinData') * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') lnSuccess = loHttp.QuickGetBd("https://www.chilkatsoft.com/syncedImages/penguins.jpg",loJpgDataFromWeb) IF (lnSuccess <> 1) THEN ? loHttp.LastErrorText RELEASE loRest RELEASE loSbPath RELEASE loJpgData RELEASE loJpgDataFromWeb RELEASE loHttp CANCEL ENDIF * Upload with a POST * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbResponseBody = CreateObject('Chilkat.StringBuilder') lnSuccess = loRest.FullRequestBd("POST",loSbPath.GetAsString(),loJpgData,loSbResponseBody) IF (lnSuccess <> 1) THEN ? loRest.LastErrorText RELEASE loRest RELEASE loSbPath RELEASE loJpgData RELEASE loJpgDataFromWeb RELEASE loHttp RELEASE loSbResponseBody CANCEL ENDIF * A 200 response is expected for actual success. IF (loRest.ResponseStatusCode <> 200) THEN ? loSbResponseBody.GetAsString() RELEASE loRest RELEASE loSbPath RELEASE loJpgData RELEASE loJpgDataFromWeb RELEASE loHttp RELEASE loSbResponseBody CANCEL ENDIF * Examine the XML response ? loSbResponseBody.GetAsString() * A successful response looks like this: * <Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> * <Id>d82568cd-d222-49e6-b713-880b6edb0606</Id> * <Status>OK</Status> * <ProviderName>ChilkatPrivate</ProviderName> * <DateTimeUTC>2016-11-11T14:17:49.5922609Z</DateTimeUTC> * <Attachments> * <Attachment> * <AttachmentID>0edcddc8-325f-40c7-b950-8c71f14afc7c</AttachmentID> * <FileName>penguins.jpg</FileName> * <Url>http://api.xero.com/api.xro/2.0/Receipts/c4f40e59-c390-0001-caff-ce731c707d00/Attachments/penguins.jpg</Url> * <MimeType>image/jpg</MimeType> * <ContentLength>777835</ContentLength> * </Attachment> * </Attachments> * </Response> RELEASE loRest RELEASE loSbPath RELEASE loJpgData RELEASE loJpgDataFromWeb RELEASE loHttp RELEASE loSbResponseBody |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.