POST api/wapi/MovetoCart
Request Information
URI Parameters
None.
Body Parameters
InputModel_AddToWishlist| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductID | integer |
None. |
|
| Qty | integer |
None. |
|
| Coupon | string |
None. |
|
| command | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductID": 1,
"Qty": 1,
"Coupon": "sample string 1",
"command": "sample string 2"
}
application/xml, text/xml
Sample:
<InputModel_AddToWishlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MallApi.Models"> <Coupon>sample string 1</Coupon> <ProductID>1</ProductID> <Qty>1</Qty> <command>sample string 2</command> </InputModel_AddToWishlist>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |