Get Serviciability for Drop pincode and product sku
This API will check the severability for requested Pincode and product SKU.
Pin code serviceability is used to determine whether the pin code of a location is serviceable or not. It is essential to validate the pin code serviceability at the time the customer places an order.
courierNamestring
The shipping mode which is available to ship the order to the customer. - Eshopbox standard - Eshopbox express
slastring
Estimated delivery date of the order.
pickupLocationstring
Ship from location of the order.
EXCHANGEboolean
Weather exchange is available or not. If true, exchange is available. If false, exchange is not available.
PICKUPboolean
Weather pickup is available or not. If true, pickup is available. If false, pickup is not available.
CODboolean
Weather Cash on delivery (COD) is available or not. If true, COD delivery is available. If false, COD delivery is not available.
PREPAIDboolean
Weather Prepaid delivery is available or not. If true, prepaid delivery is available. If false, prepaid delivery is not available.
zonestring
Zone is calculated on the basis of the pick up and drop location. - Local - Zonal - Metro - National - Remote
```json
{
"result": [
{
"courierName": "EshopboxStandard",
"zone": "Local",
"sla": "2025-01-30",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
},
{
"courierName": "EshopboxExpress",
"zone": "Local",
"sla": "2025-01-29",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
},
{
"courierName": "EshopboxPrime",
"zone": "Local",
"sla": "2025-01-28",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
}
]
}
```POST https://{workspaceSlug}.myeshopbox.com/api/v2/check/product/serviceability
Request Body
dropPincode*
String
Enter the delivery pincode of the customer.
productId*
String
Enter the product SKU.
{
"result": [
{
"courierName": "EshopboxStandard",
"zone": "Local",
"sla": "2025-01-30",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
},
{
"courierName": "EshopboxExpress",
"zone": "Local",
"sla": "2025-01-29",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
},
{
"courierName": "EshopboxPrime",
"zone": "Local",
"sla": "2025-01-28",
"pickupLocation": "Delhi",
"serviceable": {
"COD": true,
"PICKUP": true,
"EXCHANGE": true,
"PREPAID": true
}
}
]
}{
"error": {
"errors": [
{
"domain": "global",
"reason": "badRequest",
"message": "The pincode is currently not serviceable"
}
],
"code": 400,
"message": "The pincode is currently not serviceable"
}
}Last updated
Was this helpful?