POST api/TaxRate/CRUD
Add/Update/Delete TaxRates
Request Information
URI Parameters
None.
Body Parameters
String Array of TaxRates Name And Information(Mandatory)
Collection of TaxRatesInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| TaxRateId | integer | None. | |
| TaxName | string | None. | |
| TaxPercentage | string | None. | |
| IsActive | boolean | None. | |
| IsDeleted | boolean | None. | |
| Deleted | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "TaxRateId": 1,
    "TaxName": "sample string 2",
    "TaxPercentage": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  },
  {
    "TaxRateId": 1,
    "TaxName": "sample string 2",
    "TaxPercentage": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfTaxRatesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <TaxRatesInfo>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <TaxName>sample string 2</TaxName>
    <TaxPercentage>sample string 3</TaxPercentage>
    <TaxRateId>1</TaxRateId>
  </TaxRatesInfo>
  <TaxRatesInfo>
    <Deleted>1</Deleted>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <TaxName>sample string 2</TaxName>
    <TaxPercentage>sample string 3</TaxPercentage>
    <TaxRateId>1</TaxRateId>
  </TaxRatesInfo>
</ArrayOfTaxRatesInfo>
        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>