Get serviceability based on drop pincode, pickup pincode and product dimension

This API will check the serviceability based upon the drop /pickup pincode and matching dimensions as per the request

Dimensions to be passed in cm and grams

POST https://{workspaceSlug}.myeshopbox.com/api/v2/pincodeserviceability

Request Body

NameTypeDescription

dropPincode*

String

pickupPincode*

String

deadWeight*

integer

length*

integer

height*

integer

width*

integer

isCod

enum

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

Last updated