GET api/v7/TaxTables/{taxTableCode}

Retrieve the tax table information for the given tax table code.

Request Information

URI Parameters

NameDescriptionTypeRequired?Additional information
taxTableCode *

the tax table code

string

Yes

None.

Body Parameters

None.

Response Information

Resource Description

tax information

TaxTableDto
NameDescriptionType
taxTableCode

Taxtable Code

string
filePath

File path

string
formula

Formula

string
customerAuditDate

Audit information

date

Response 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>