Store Locations & Zones
Get zones
API Documentation
Order
- Background
- Order Address Validation (Geocoding)
- POSTCreate Order
- POSTCreate Orders
- POSTCreate or update order by external identifier
- PATCHUpdate order
- GETGet order
- POSTCreate Quote
- GETGet Order Documents
- POSTSelect Quote
- POSTRefresh order quotes
- POSTAutodispatch Order
- POSTAdd Custom Event to Order
- DELArchive order
- PATCHUnarchive order
- Bulk Order Actions
- Delivery Windows & Capacity
Dispatch Strategies
Notifications
Store Locations & Zones
- POSTCreate store location
- PATCHUpdate Store Location
- GETGet Store Location
- GETGet Store Locations
- GETGet store location by external identifier
- DELDelete store location
- GETGet store locations that cover specified location (latitude & longitude, city_zipcode)
- POSTCreate a zone
- PATCHUpdate a zone
- DELDelete a zone
- GETGet zone
- GETGet zones
- GETGet zone by external identifier
- GETGet zones that cover specified location (latitude & longitude, city_zipcode)
Jobs
- Background
- Package Requirements
- POSTCreate Job
- POSTCreate or Update Job by External Identifier
- PATCHUpdate Job
- GETGet Job
- GETGet Job by External Identifier
- POSTSelect Quote
- POSTReassign a Task
- POSTRefresh Quotes
- POSTAutodispatch Job
- POSTAutodispatch Job by External Identifier
- POSTCancel Job
- POSTCancel Job by External Identifier
- POSTCreate Delivery Incident
- GETGet Refund Requests
- GETGet Refund Request
Batch Jobs
Providers
Miscellaneous
Store Locations & Zones
Get zones
GET
/
v1
/
zones
curl --request GET \
--url https://api.sandbox.usenash.com/v1/zones
{
"zones": [
{
"id": "zone_01234567890123456789",
"externalId": "ext_01234567890123456789",
"timezoneId": "America/New_York",
"name": "Zone 1",
"coverageAreaId": "coa_01234567890123456789",
"storeLocationIds": [
"stl_01234567890123456789",
"stl_01234567890123456789"
],
"storeLocationAssociations": [
{
"end_date": "2025-01-01",
"start_date": "2024-01-01",
"store_location_id": "stl_01234567890123456789",
"zone_id": "zone_01234567890123456789"
}
],
"deliveryWindowIds": "['dw_01234567890123456789', 'dw_01234567890123456789']",
"tags": "['service:rapid', 'franchise_location']",
"isDeleted": false
}
]
}
Query Parameters
The size of the zones to return.
The offset of the zones to return.
Response
200
application/json
OK
Response for list zones.
Response for zone.
The ID of the zone.
Example:
"zone_01234567890123456789"
The external ID of the zone.
Example:
"ext_01234567890123456789"
The timezone ID of the zone.
Example:
"America/New_York"
The name of the zone.
Example:
"Zone 1"
The ID of the coverage area.
Example:
"coa_01234567890123456789"
The store location IDs of the zone.
Example:
[
"stl_01234567890123456789",
"stl_01234567890123456789"
]
The store location associations of the zone.
Example:
[
{
"end_date": "2025-01-01",
"start_date": "2024-01-01",
"store_location_id": "stl_01234567890123456789",
"zone_id": "zone_01234567890123456789"
}
]
The delivery window IDs of the zone.
Example:
"['dw_01234567890123456789', 'dw_01234567890123456789']"
The tags of the zone.
Example:
"['service:rapid', 'franchise_location']"
Whether the zone is deleted.
Example:
false
curl --request GET \
--url https://api.sandbox.usenash.com/v1/zones
{
"zones": [
{
"id": "zone_01234567890123456789",
"externalId": "ext_01234567890123456789",
"timezoneId": "America/New_York",
"name": "Zone 1",
"coverageAreaId": "coa_01234567890123456789",
"storeLocationIds": [
"stl_01234567890123456789",
"stl_01234567890123456789"
],
"storeLocationAssociations": [
{
"end_date": "2025-01-01",
"start_date": "2024-01-01",
"store_location_id": "stl_01234567890123456789",
"zone_id": "zone_01234567890123456789"
}
],
"deliveryWindowIds": "['dw_01234567890123456789', 'dw_01234567890123456789']",
"tags": "['service:rapid', 'franchise_location']",
"isDeleted": false
}
]
}