POST api/order/Address/GeographicDrilldown/GetAllValues
For a given country, state, city, county return all the other possible countries, states, cities, counties respectively
Request Information
URI Parameters
None.
Body Parameters
The Geographic Drilldown containing Country, State, City, and County information.
GeographicDrilldownParametersName | Description | Type | Additional information |
---|---|---|---|
Country |
The name of the Country |
string |
None. |
State |
The name of the State |
string |
None. |
City |
The name of the City |
string |
None. |
County |
The name of the County |
string |
None. |
PostalCode |
The Postal Code for the Geopgraphic location. |
string |
None. |
Request Formats
application/xml, text/xml
Sample:
<GeographicDrilldownParameters> <Country>sample string 1</Country> <State>sample string 2</State> <City>sample string 3</City> <County>sample string 4</County> <PostalCode>sample string 5</PostalCode> </GeographicDrilldownParameters>
application/json, text/json
Sample:
{ "Country": "sample string 1", "State": "sample string 2", "City": "sample string 3", "County": "sample string 4", "PostalCode": "sample string 5" }
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GeographicDrilldownValuesName | Description | Type | Additional information |
---|---|---|---|
StatesArr | Collection of string |
None. |
|
Cities | Collection of string |
None. |
|
Counties | Collection of string |
None. |
|
PostalCodes | Collection of string |
None. |
Response Formats
application/xml, text/xml
Sample:
<GeographicDrilldownValues> <States> <String>sample string 1</String> <String>sample string 2</String> </States> <Cities> <String>sample string 1</String> <String>sample string 2</String> </Cities> <Counties> <String>sample string 1</String> <String>sample string 2</String> </Counties> <PostalCodes> <String>sample string 1</String> <String>sample string 2</String> </PostalCodes> </GeographicDrilldownValues>
application/json, text/json
Sample:
{ "StatesArr": [ "sample string 1", "sample string 2" ], "Cities": [ "sample string 1", "sample string 2" ], "Counties": [ "sample string 1", "sample string 2" ], "PostalCodes": [ "sample string 1", "sample string 2" ] }