PUT Finance/ModifyTaxRate
Retrieves an existing TaxRate.
Request Information
URI Parameters
None.
Body Parameters
TaxRateBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 30 |
|
| Percent | decimal number |
Range: inclusive between 0 and 1 |
|
| EquivalenceSurchargePercent |
The equivalence surcharge is a special VAT regime compulsory for retail sellers that don’t make any kind of transformation to the products they sell. That is for the self-employed sellers that sell to the final client. It’s applied both to physical people that register as self-employed to communities of property. The supplier of the seller is to include the equivalence surcharge of their invoices, separated from the VAT, and consider both amount as VAT charged on their VAT statements. |
decimal number |
Range: inclusive between 0 and 1 |
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"Percent": 3.0,
"EquivalenceSurchargePercent": 4.0,
"Lang": "sample string 5",
"StoreID": 6
}
application/xml, text/xml
Sample:
<TaxRateBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Finance"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 5</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">6</StoreID> <EquivalenceSurchargePercent>4</EquivalenceSurchargePercent> <ID>1</ID> <Name>sample string 2</Name> <Percent>3</Percent> </TaxRateBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>