GET taxclasses
Returns a list of available Tax Classes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns a list of available Tax Classes
Collection of TaxClassModelName | Description | Type | Additional information |
---|---|---|---|
TaxClassID | The ID for the tax class. | integer | None. |
TaxClassGuid | The GUID for the tax class | globally unique identifier | None. |
CreatedOn | Utc Date of Creation | date | None. |
IsGlobal | This field determines whether the tax class is a custom tax class created on the account. | boolean | None. |
TaxRateCountries | List of all Country modifiers to that Tax Rate | Collection of TaxRateCountryModel | None. |
Name | The name given to tax class. | string | None. |
TaxRate | The tax rate for instance 17.5 | decimal number | None. |
Response Formats
application/json, text/json
Sample:
[ { "TaxClassID": 4, "TaxClassGuid": "826b830f-e1f0-4802-8209-cb47c3b351cb", "CreatedOn": "2017-04-19T00:00:00", "IsGlobal": false, "TaxRateCountries": [], "Name": "Tax Class 2", "TaxRate": 10.0 }, { "TaxClassID": 3, "TaxClassGuid": "b5a091d3-1e15-4b47-a216-64e079e35627", "CreatedOn": "2017-04-20T00:00:00", "IsGlobal": true, "TaxRateCountries": [ { "TaxRateCountryID": 2, "CountryName": "MAURITIUS", "ISOCountryCodeTwoLetter": "MU", "TaxRate": 10.0 } ], "Name": "Global Tax", "TaxRate": 15.0 } ]
application/xml, text/xml
Sample:
<ArrayOfTaxClassModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TaxClassModel> <TaxClassID>4</TaxClassID> <Name>Tax Class 2</Name> <TaxRate>10</TaxRate> <TaxClassGuid>826b830f-e1f0-4802-8209-cb47c3b351cb</TaxClassGuid> <CreatedOn>2017-04-19T00:00:00</CreatedOn> <IsGlobal>false</IsGlobal> <TaxRateCountries /> </TaxClassModel> <TaxClassModel> <TaxClassID>3</TaxClassID> <Name>Global Tax</Name> <TaxRate>15</TaxRate> <TaxClassGuid>b5a091d3-1e15-4b47-a216-64e079e35627</TaxClassGuid> <CreatedOn>2017-04-20T00:00:00</CreatedOn> <IsGlobal>true</IsGlobal> <TaxRateCountries> <TaxRateCountryModel> <TaxRateCountryID>2</TaxRateCountryID> <CountryName>MAURITIUS</CountryName> <ISOCountryCodeTwoLetter>MU</ISOCountryCodeTwoLetter> <TaxRate>10</TaxRate> </TaxRateCountryModel> </TaxRateCountries> </TaxClassModel> </ArrayOfTaxClassModel>