POST api/tax/create
Create a new tax rate for the system
Request Information
URI Parameters
None.
Body Parameters
TaxRateDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| TaxItems | Collection of TaxRateItemDataContract |
None. |
|
| Id | integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Name": "sample string 1",
"TaxItems": [
{
"Name": "sample string 1",
"Value": 2.0,
"IsActive": true,
"RelatedEnumId": 4,
"Id": 5
},
{
"Name": "sample string 1",
"Value": 2.0,
"IsActive": true,
"RelatedEnumId": 4,
"Id": 5
}
],
"Id": 2
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.