Dart Requires Chilkat v11.0.0+
Dart
Xero Create Account
See more Xero Examples
Create new accounts in a Xero company.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final http = CkHttp();
final jsonToken = CkJsonObject();
try {
jsonToken.loadFile('qa_data/tokens/xero-access-token.json');
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
http.authToken = jsonToken.stringOf('access_token');
// Replace the value here with an actual tenant ID obtained from this example:
// Get Xero Tenant IDs
http.setRequestHeader('Xero-tenant-id', '83299b9e-5747-4a14-a18a-a6c94f824eb7');
http.accept = '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
final jsonRequestBody = CkJsonObject();
jsonRequestBody.updateString('Code', '201');
jsonRequestBody.updateString('Name', 'Sales - clearance lines');
jsonRequestBody.updateString('Type', 'SALES');
final url = 'https://api.xero.com/api.xro/2.0/Accounts';
final resp = CkHttpResponse();
try {
http.httpJson('PUT', url, jsonRequestBody, 'application/json', resp);
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
print('Response Status Code: ${resp.statusCode}');
final jsonResponse = CkJsonObject();
jsonResponse.load(resp.bodyStr);
jsonResponse.emitCompact = false;
print(jsonResponse.emit());
if (resp.statusCode >= 300) {
print('Failed.');
return;
}
// 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
// }
// ]
// }
//
var accountID = '';
var code = '';
var name = '';
var type = '';
var taxType = '';
var classVar = '';
var reportingCode = '';
var reportingCodeName = '';
var updatedDateUTC = '';
final id = jsonResponse.stringOf('Id');
var status = jsonResponse.stringOf('Status');
final providerName = jsonResponse.stringOf('ProviderName');
final dateTimeUTC = jsonResponse.stringOf('DateTimeUTC');
var i = 0;
final countI = jsonResponse.sizeOfArray('Accounts');
while (i < countI) {
jsonResponse.i = i;
accountID = jsonResponse.stringOf('Accounts[i].AccountID');
code = jsonResponse.stringOf('Accounts[i].Code');
name = jsonResponse.stringOf('Accounts[i].Name');
status = jsonResponse.stringOf('Accounts[i].Status');
type = jsonResponse.stringOf('Accounts[i].Type');
taxType = jsonResponse.stringOf('Accounts[i].TaxType');
classVar = jsonResponse.stringOf('Accounts[i].Class');
jsonResponse.boolOf('Accounts[i].EnablePaymentsToAccount');
jsonResponse.boolOf('Accounts[i].ShowInExpenseClaims');
reportingCode = jsonResponse.stringOf('Accounts[i].ReportingCode');
reportingCodeName = jsonResponse.stringOf('Accounts[i].ReportingCodeName');
updatedDateUTC = jsonResponse.stringOf('Accounts[i].UpdatedDateUTC');
jsonResponse.boolOf('Accounts[i].AddToWatchlist');
i++;
}
}