POST api/v7/TaxTables
Add a new tax table.
Tables Impacted
TaxTable
Request Information
URI Parameters
None.
Body Parameters
the tax table information
TaxTableDtoName | Description | Type | Required? | Additional information |
---|---|---|---|---|
taxTableCode * |
Taxtable Code |
string |
Yes |
String length: between 1 and 16, inclusive |
filePath |
File path |
string |
No |
String length: between 1 and 256, inclusive |
formula |
Formula |
string |
No |
String length: between 1 and 256, inclusive |
customerAuditDate |
Audit information |
date |
No |
None. |
Request Formats
application/json, text/json
Sample:
{ "taxTableCode": "sample string 1", "filePath": "sample string 2", "formula": "sample string 3", "customerAuditDate": "2018-01-01T00:00:00" }
application/xml, text/xml
Sample:
<TaxTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <taxTableCode>sample string 1</taxTableCode> <filePath>sample string 2</filePath> <formula>sample string 3</formula> <customerAuditDate>2018-01-01T00:00:00</customerAuditDate> </TaxTable>
Response Information
Resource Description
Returns a HTTPResponse Message stating the success/failure of API Action
HttpResponseMessageName | Description | Type |
---|---|---|
Version | Version | |
Content | HttpContent | |
StatusCode | HttpStatusCode | |
ReasonPhrase | string | |
Headers | Collection of Object | |
RequestMessage | HttpRequestMessage | |
IsSuccessStatusCode | boolean |