Shipping Zone Details
GET
/shipping/zones/{zone_id}This endpoint allows you to fetch a specific Custom Shipping Zone by passing the zone_id
as a path parameter.
Request
Zone ID
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
A unique identifier associated with a certain shipping zone. List of shipping zons can be found here
Zone Code
The cities excluded from Shipping zone.
Shipping duration in days
{
"status": 200,
"success": true,
"data": {
"id": 488260393,
"zone_code": ".SA.riyadh",
"company": {
"id": 1473353380,
"slug": null
},
"country": {
"id": 1473353380,
"name": "السعودية",
"name_en": "Saudi Arabia",
"code": "SA",
"mobile_code": "+966"
},
"city": {
"id": 1473353380,
"name": "الرياض",
"name_en": "Riyadh"
},
"cities_excluded": [
{
"id": 257742554,
"name": "أبو حليفة",
"name_en": "ABU HALIFA"
}
],
"fees": {
"amount": "15.00",
"currency": "SAR",
"type": "fixed"
},
"cash_on_delivery": {
"status": true,
"fees": "12.00"
},
"duration": "3-5"
}
}