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
Get zones that cover specified location (latitude & longitude, city_zipcode)
curl --request GET \
--url https://api.sandbox.usenash.com/v1/zones/coverage
{
"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 latitude of the location to check coverage for. If used, must specify longitude
"0.00"
The longitude of the location to check coverage for. If used, must specify latitude
"0.00"
The city_zipcode pair to check coverage for. The location must have coverage set up using the City & Zip Code
unique field, not the separate City
or Zip Code
fields.
"sanfrancisco_94114"
The zipcode to check coverage for.
"94114"
Response
Response for list zones.
Response for zone.
The ID of the zone.
"zone_01234567890123456789"
The external ID of the zone.
"ext_01234567890123456789"
The timezone ID of the zone.
"America/New_York"
The name of the zone.
"Zone 1"
The ID of the coverage area.
"coa_01234567890123456789"
The store location IDs of the zone.
[
"stl_01234567890123456789",
"stl_01234567890123456789"
]
The store location associations of the zone.
[
{
"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.
"['dw_01234567890123456789', 'dw_01234567890123456789']"
The tags of the zone.
"['service:rapid', 'franchise_location']"
Whether the zone is deleted.
false
curl --request GET \
--url https://api.sandbox.usenash.com/v1/zones/coverage
{
"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
}
]
}