GET taxclasses/{taxclassid}/taxratecountries/{taxratecountryid}
Returns a single Country specific tax rate in a Tax Class
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taxclassid | The ID of the Tax Class | integer | Required |
| taxratecountryid | The ID of the Country specific Tax Rate | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Returns a single Country specific tax rate in a Tax Class
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version | None. | |
| Content | HttpContent | None. | |
| StatusCode | HttpStatusCode | None. | |
| ReasonPhrase | string | None. | |
| Headers | Collection of Object | None. | |
| RequestMessage | HttpRequestMessage | None. | |
| IsSuccessStatusCode | boolean | None. |
Response Formats
application/json, text/json
Sample:
{
"TaxRateCountryID": 2,
"CountryName": "MAURITIUS",
"ISOCountryCodeTwoLetter": "MU",
"TaxRate": 10.0
}
application/xml, text/xml
Sample:
<TaxRateCountryModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TaxRateCountryID>2</TaxRateCountryID> <CountryName>MAURITIUS</CountryName> <ISOCountryCodeTwoLetter>MU</ISOCountryCodeTwoLetter> <TaxRate>10</TaxRate> </TaxRateCountryModel>