Webservice to get a list of serviced Zip codes for a given market.
| Name | Type | Required | Description |
|---|---|---|---|
| user | Header param | Y | Your API username. Please note this is not the same as your web username. |
| password | Header param | Y | Your API password. Please note this is not the same as your web password. |
| customerId | Header param | Y | Your API customerId. |
| airportCode | Request param | Y | 3 char airport code. Example DFW. For a full list of airport codes, please use the Stations Service. |
| Body | Body | N | Not required. |
Response will contain array of Zip objects.
| Name | Type | Required | Description |
|---|---|---|---|
| airportCode | String | Y | The 3 char code for this station. |
| zip | String | Y | Zip code |
List of active Zip codes.
[
{
"airportCode": "DFW",
"zip": "73032"
},
{
"airportCode": "DFW",
"zip": "73052"
},
{
"airportCode": "DFW",
"zip": "73425"
}
]