Skip to content

Sage 200 Online Tax Code XML

Tax codes are normally used for UK business VAT Rates. They are accessed by Sage 200 modules in order to: -

  • Analyse the rates to Nominal Ledger accounts.
  • Analyse the rates to the VAT Return.
  • Read percentages for calculations in transactions.

Further information can be found on the Sage 200 Online Tax Code API Documentation.

Tasks

Fields for Download Only

id

Read Only
Tax code record Id.

Type Example XML
integer(int64) 2 <id>2</id>

code

Read Only
Tax code.

Type Example XML
int(16) 1 <code>1</code>

name

Read Only
Name of the tax code.

Type Example XML
string(60) Standard rate <name>Standard rate</name>

tax_rate

Read Only
Tax rate.

Type Example XML
number(2dp) 20.00 <tax_rate>20.00</tax_rate>

terms

Read Only
Name of the terms.

Type Example XML
string(54) EcTermsNotApplicable <terms>EcTermsNotApplicable</terms>

terms_description

Read Only
Description of the terms.

Type Example XML
string(60) Not Applicable <terms_description>Not Applicable</terms_description>

is_notional_acquisition_tax

Read Only
Whether the terms indicate notional acquisition tax is applicable.

Type Example XML
boolean false <is_notional_acquisition_tax>false</is_notional_acquisition_tax>

date_time_created

Read Only
The date and time this entity was created (UTC).

Type Example XML
datetime 2021-02-28T14:03:24.59Z <date_time_created>2021-02-28T14:03:24.59Z</date_time_created>

date_time_updated

Read Only
The date and time this entity was last updated (UTC).

Type Example XML
datetime 2021-02-28T14:03:24.59Z <date_time_updated>2021-02-28T14:23:46.133Z</date_time_updated>

Example XML

<?xml version="1.0" encoding="utf-8"?>
<TaxCodes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <TaxCode>
    <id>1729</id>
    <code>1</code>
    <name>Standard rate</name>
    <tax_rate>20.00</tax_rate>
    <terms>EcTermsNotApplicable</terms>
    <terms_description>Not Applicable</terms_description>
    <is_notional_acquisition_tax>false</is_notional_acquisition_tax>
    <date_time_created>2021-02-28T14:03:24.59Z</date_time_created>
    <date_time_updated>2021-02-28T14:23:46.133Z</date_time_updated>
  </TaxCode>
</TaxCodes>