POST Product/GetShippingCost
Request Information
URI Parameters
None.
Body Parameters
ShippingCost| Name | Description | Type | Additional information |
|---|---|---|---|
| countryName | string |
None. |
|
| weight | decimal number |
None. |
|
| currencyCode | string |
None. |
|
| shopName | string |
None. |
|
| orderTotal | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"countryName": "sample string 1",
"weight": 2.1,
"currencyCode": "sample string 3",
"shopName": "sample string 4",
"orderTotal": 5.0
}
application/xml, text/xml
Sample:
<ShippingCost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AstroVed.Api.DAL"> <countryName>sample string 1</countryName> <currencyCode>sample string 3</currencyCode> <orderTotal>5</orderTotal> <shopName>sample string 4</shopName> <weight>2.1</weight> </ShippingCost>
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. |