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
(PureBasic) Xero Create AccountCreate new accounts in a Xero company. For more information, see https://developer.xero.com/documentation/api/accounts#PUT
IncludeFile "CkHttpResponse.pb" IncludeFile "CkHttp.pb" IncludeFile "CkJsonObject.pb" Procedure ChilkatExample() ; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. http.i = CkHttp::ckCreate() If http.i = 0 Debug "Failed to create object." ProcedureReturn EndIf jsonToken.i = CkJsonObject::ckCreate() If jsonToken.i = 0 Debug "Failed to create object." ProcedureReturn EndIf success.i = CkJsonObject::ckLoadFile(jsonToken,"qa_data/tokens/xero-access-token.json") If success = 0 Debug CkJsonObject::ckLastErrorText(jsonToken) CkHttp::ckDispose(http) CkJsonObject::ckDispose(jsonToken) ProcedureReturn EndIf CkHttp::setCkAuthToken(http, CkJsonObject::ckStringOf(jsonToken,"access_token")) ; Replace the value here with an actual tenant ID obtained from this example: ; Get Xero Tenant IDs CkHttp::ckSetRequestHeader(http,"Xero-tenant-id","83299b9e-5747-4a14-a18a-a6c94f824eb7") CkHttp::setCkAccept(http, "application/json") ; The following JSON is sent in the request body: ; { ; "Code": "201", ; "Name": "Sales - clearance lines", ; "Type": "SALES" ; } ; Use this online tool to generate the code from sample JSON: ; Generate Code to Create JSON jsonRequestBody.i = CkJsonObject::ckCreate() If jsonRequestBody.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckUpdateString(jsonRequestBody,"Code","201") CkJsonObject::ckUpdateString(jsonRequestBody,"Name","Sales - clearance lines") CkJsonObject::ckUpdateString(jsonRequestBody,"Type","SALES") url.s = "https://api.xero.com/api.xro/2.0/Accounts" resp.i = CkHttp::ckPText(http,"PUT",url,CkJsonObject::ckEmit(jsonRequestBody),"utf-8","application/json",0,0) If CkHttp::ckLastMethodSuccess(http) <> 1 Debug CkHttp::ckLastErrorText(http) CkHttp::ckDispose(http) CkJsonObject::ckDispose(jsonToken) CkJsonObject::ckDispose(jsonRequestBody) ProcedureReturn EndIf Debug "Response Status Code: " + Str(CkHttpResponse::ckStatusCode(resp)) jsonResponse.i = CkJsonObject::ckCreate() If jsonResponse.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckLoad(jsonResponse,CkHttpResponse::ckBodyStr(resp)) CkJsonObject::setCkEmitCompact(jsonResponse, 0) Debug CkJsonObject::ckEmit(jsonResponse) If CkHttpResponse::ckStatusCode(resp) >= 300 Debug "Failed." CkHttpResponse::ckDispose(resp) CkHttp::ckDispose(http) CkJsonObject::ckDispose(jsonToken) CkJsonObject::ckDispose(jsonRequestBody) CkJsonObject::ckDispose(jsonResponse) ProcedureReturn EndIf CkHttpResponse::ckDispose(resp) ; Sample output... ; (See the parsing code below..) ; ; Use the this online tool to generate parsing code from sample JSON: ; Generate Parsing Code from JSON ; { ; "Id": "705036aa-771d-4c0a-9d66-28904022858c", ; "Status": "OK", ; "ProviderName": "Chilkat2222", ; "DateTimeUTC": "\/Date(1587161712234)\/", ; "Accounts": [ ; { ; "AccountID": "54ddab14-4a8d-45cf-86be-076c99a0cea0", ; "Code": "201", ; "Name": "Sales - clearance lines", ; "Status": "ACTIVE", ; "Type": "SALES", ; "TaxType": "OUTPUT", ; "Class": "REVENUE", ; "EnablePaymentsToAccount": false, ; "ShowInExpenseClaims": false, ; "ReportingCode": "REV", ; "ReportingCodeName": "Revenue", ; "UpdatedDateUTC": "\/Date(1587161712283+0000)\/", ; "AddToWatchlist": false ; } ; ] ; } ; AccountID.s Code.s Name.s Type.s TaxType.s Class.s EnablePaymentsToAccount.i ShowInExpenseClaims.i ReportingCode.s ReportingCodeName.s UpdatedDateUTC.s AddToWatchlist.i Id.s = CkJsonObject::ckStringOf(jsonResponse,"Id") Status.s = CkJsonObject::ckStringOf(jsonResponse,"Status") ProviderName.s = CkJsonObject::ckStringOf(jsonResponse,"ProviderName") DateTimeUTC.s = CkJsonObject::ckStringOf(jsonResponse,"DateTimeUTC") i.i = 0 count_i.i = CkJsonObject::ckSizeOfArray(jsonResponse,"Accounts") While i < count_i CkJsonObject::setCkI(jsonResponse, i) AccountID = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].AccountID") Code = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Code") Name = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Name") Status = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Status") Type = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Type") TaxType = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].TaxType") Class = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].Class") EnablePaymentsToAccount = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].EnablePaymentsToAccount") ShowInExpenseClaims = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].ShowInExpenseClaims") ReportingCode = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].ReportingCode") ReportingCodeName = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].ReportingCodeName") UpdatedDateUTC = CkJsonObject::ckStringOf(jsonResponse,"Accounts[i].UpdatedDateUTC") AddToWatchlist = CkJsonObject::ckBoolOf(jsonResponse,"Accounts[i].AddToWatchlist") i = i + 1 Wend CkHttp::ckDispose(http) CkJsonObject::ckDispose(jsonToken) CkJsonObject::ckDispose(jsonRequestBody) CkJsonObject::ckDispose(jsonResponse) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.