POST API/Customer/CheckPricing
This is the Pricing API which provides information on domestic shipment rates from one pincode to another across various courier partners.
Request Information
URI Parameters
None.
Body Parameters
Pricing object
PricingName | Description | Type | Additional information |
---|---|---|---|
shipment_type | string |
None. |
|
pickup_pincode | string |
None. |
|
drop_pincode | string |
None. |
|
delivery_mode | string |
None. |
|
payment_mode | string |
None. |
|
length | integer |
None. |
|
breadth | integer |
None. |
|
height | integer |
None. |
|
weight | decimal number |
None. |
|
is_mps | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "shipment_type": "sample string 1", "pickup_pincode": "sample string 2", "drop_pincode": "sample string 3", "delivery_mode": "sample string 4", "payment_mode": "sample string 5", "length": 6, "breadth": 7, "height": 8, "weight": 9.0, "is_mps": true }
application/xml, text/xml
Sample:
<Pricing xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrownCow.Common.BusinessLayer"> <breadth>7</breadth> <delivery_mode>sample string 4</delivery_mode> <drop_pincode>sample string 3</drop_pincode> <height>8</height> <is_mps>true</is_mps> <length>6</length> <payment_mode>sample string 5</payment_mode> <pickup_pincode>sample string 2</pickup_pincode> <shipment_type>sample string 1</shipment_type> <weight>9</weight> </Pricing>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.