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.

Attribute
Type
Description

string

The shipping mode which is available to ship the order to the customer. - Eshopbox standard - Eshopbox express

string

Estimated delivery date of the order.

string

Ship from location of the order.

boolean

Weather exchange is available or not. If true, exchange is available. If false, exchange is not available.

boolean

Weather pickup is available or not. If true, pickup is available. If false, pickup is not available.

boolean

Weather Cash on delivery (COD) is available or not. If true, COD delivery is available. If false, COD delivery is not available.

boolean

Weather Prepaid delivery is available or not. If true, prepaid delivery is available. If false, prepaid delivery is not available.

string

Zone is calculated on the basis of the pick up and drop location. - Local - Zonal - Metro - National - Remote

POST https://{workspaceSlug}.myeshopbox.com/api/v2/check/product/serviceability

Request Body

Name
Type
Description

dropPincode*

String

Enter the delivery pincode of the customer.

productId*

String

Enter the product SKU.

{
    "result": [
        {
            "courierName" : "Eshopbox Standard",
            "sla": "2022-02-16",
            "pickupLocation":"gurgoan",
            "serviceable": {
                "EXCHANGE": false,
                "PICKUP": true,
                "COD": true,
                "PREPAID": true
            },
              "zone" : "local"
        },
        {
            "courierName" : "Eshopbox Express",
            "pickupLocation":"gurgoan",
            "sla": "2022-02-09",
            "serviceable": {
                "EXCHANGE": false,
                "PICKUP": true,
                "COD": true,
                "PREPAID": true
            },
            "zone" : "local"
        }
    ]
}

Last updated