GET api/v7/TaxLocations

Retrieve a list of tax destinations.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

the list of tax destinations

Collection of TaxLocationDto
NameDescriptionType
name

The location record name

string
type

Any geographic classification

string
value

Actual location name that can be searched later

string
parentName

To distinguish a location from another record

string
customerAuditDate

Audit information

date

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "type": "sample string 2",
    "value": "sample string 3",
    "parentName": "sample string 4",
    "customerAuditDate": "2018-01-01T00:00:00"
  },
  {
    "name": "sample string 1",
    "type": "sample string 2",
    "value": "sample string 3",
    "parentName": "sample string 4",
    "customerAuditDate": "2018-01-01T00:00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaxLocationDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <TaxLocationDto>
    <name>sample string 1</name>
    <type>sample string 2</type>
    <value>sample string 3</value>
    <parentName>sample string 4</parentName>
    <customerAuditDate>2018-01-01T00:00:00</customerAuditDate>
  </TaxLocationDto>
  <TaxLocationDto>
    <name>sample string 1</name>
    <type>sample string 2</type>
    <value>sample string 3</value>
    <parentName>sample string 4</parentName>
    <customerAuditDate>2018-01-01T00:00:00</customerAuditDate>
  </TaxLocationDto>
</ArrayOfTaxLocationDto>