PUT api/Content/v2/RemoveFromWishList
Request Information
URI Parameters
None.
Body Parameters
APIWishList| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| BeerId | integer |
None. |
|
| ProductId | integer |
None. |
|
| LocationId | integer |
None. |
|
| Remove | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "249a321f-829b-4751-a8fb-a7776172f369",
"UserUniqueId": 3,
"BeerId": 4,
"ProductId": 5,
"LocationId": 6,
"Remove": true
}
application/xml, text/xml
Sample:
<APIWishList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <BeerId>4</BeerId> <CustomerId>1</CustomerId> <LocationId>6</LocationId> <ProductId>5</ProductId> <Remove>true</Remove> <UniqueId>249a321f-829b-4751-a8fb-a7776172f369</UniqueId> <UserUniqueId>3</UserUniqueId> </APIWishList>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Message>sample string 2</Message> <Status>true</Status> </APIResult>