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.

AttributeTypeDescription
courierName

string

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

sla

string

Estimated delivery date of the order.

pickupLocation

string

Ship from location of the order.

EXCHANGE

boolean

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

PICKUP

boolean

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

COD

boolean

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

PREPAID

boolean

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

zone

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

NameTypeDescription

dropPincode*

String

Enter the delivery pincode of the customer.

productId*

String

Enter the product SKU.

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

Last updated