POST api/Product/SaveShippingMethod

Documentation for 'SaveShippingMethod'.

Request Information

Parameters

NameDescriptionAdditional information
cartInfo
Documentation for 'cartInfo'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "shippingMethod": 1,
  "paymentMethod": 2,
  "isDifferentShippingAddress": true,
  "isShippedToReseller": true,
  "code": "sample string 5",
  "deliveryOptionId": 6,
  "deliveryEmail": "sample string 7"
}

application/xml, text/xml

Sample:
<CartInfoVM xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ShippingMethod>1</ShippingMethod>
  <PaymentMethod>2</PaymentMethod>
  <IsDifferentShippingAddress>true</IsDifferentShippingAddress>
  <IsShippedToReseller>true</IsShippedToReseller>
  <Code>sample string 5</Code>
  <DeliveryOptionId>6</DeliveryOptionId>
  <DeliveryEmail>sample string 7</DeliveryEmail>
</CartInfoVM>

application/x-www-form-urlencoded

Sample:

Sample not available.