POST Rchlo/Freight/{storeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| storeId | integer |
Required |
Body Parameters
RchloQuotationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| zipCode | string |
None. |
|
| products | Collection of RchloQuotationProduct |
None. |
Request Formats
application/json, text/json
Sample:
{
"zipCode": "sample string 1",
"products": [
{
"skuId": "sample string 1",
"weight": "sample string 2",
"height": "sample string 3",
"width": "sample string 4",
"length": "sample string 5",
"quantity": 6
},
{
"skuId": "sample string 1",
"weight": "sample string 2",
"height": "sample string 3",
"width": "sample string 4",
"length": "sample string 5",
"quantity": 6
}
]
}
application/xml, text/xml
Sample:
<RchloQuotationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPIHUB.Models.Riachuelo">
<Products>
<RchloQuotationProduct>
<Height>sample string 3</Height>
<Length>sample string 5</Length>
<Quantity>6</Quantity>
<SkuId>sample string 1</SkuId>
<Weight>sample string 2</Weight>
<Width>sample string 4</Width>
</RchloQuotationProduct>
<RchloQuotationProduct>
<Height>sample string 3</Height>
<Length>sample string 5</Length>
<Quantity>6</Quantity>
<SkuId>sample string 1</SkuId>
<Weight>sample string 2</Weight>
<Width>sample string 4</Width>
</RchloQuotationProduct>
</Products>
<ZipCode>sample string 1</ZipCode>
</RchloQuotationModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |