Advanced Zone Management Using API
Last updated: February 6, 2025
The Nash platform provides API-based tools to manage zones effectively. Key features include:
Multiple Store Associations
Link multiple store locations to a single zone for centralized management.
For instance, a grocery chain can group all stores in a metropolitan area under one "Metro Zone" with consistent delivery policies.
Dedicated Delivery Windows
Each zone maintains independent delivery windows, separate from store locations.
Adjust schedules during peak periods without affecting other stores.
External ID Support
Assign external IDs to zones for seamless integration with other systems.
Useful for businesses using third-party logistics providers.
Tagging Capability
Add tags like "Same-Day Delivery," "Restricted Access," or "High-Demand Area" for easy categorization and quick searches during scheduling.
Coverage Area Association
Link zones to specific geographic areas to optimize deliveries based on regional characteristics such as traffic patterns or local events.
Using the Nash API for Zone Management
Create a Zone
Endpoint: POST /zones
{
"name": "Metro Zone",
"store_ids": ["store001", "store002", "store003"],
"delivery_window": {
"start": "09:00",
"end": "21:00"
},
"external_id": "ext-101",
"tags": ["Metro", "High-Demand"]
}Update a Zone
Endpoint: PATCH /zones/<id>For detailed API documentation, visit our API documentation.