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
boolean 20.00 <tax_rate>20.00</tax_rate>

date_time_updated

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

Type Example XML
datetime 2015-10-30T22:33:16.473 <date_time_updated>2015-10-30T22:33:16.473</date_time_updated>

Example XML

<tax_code>
    <id>2</id>
    <date_time_updated>2015-10-30T22:33:16.473</date_time_updated>
    <code>1</code>
    <name>Standard Rate</name>
    <tax_rate>20.00</tax_rate>
</tax_code>