PUT api/Content/v3/AddToWishList
Request Information
URI Parameters
None.
Body Parameters
APIWishListName | Description | Type | Additional information |
---|---|---|---|
CustomerId | integer |
None. |
|
UniqueId | globally unique identifier |
None. |
|
UserUniqueId | integer |
None. |
|
BeerId | integer |
None. |
|
LocationId | integer |
None. |
|
Remove | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerId": 1, "UniqueId": "f4a98c2b-57a1-4b24-a32a-74f2faadebac", "UserUniqueId": 3, "BeerId": 4, "LocationId": 5, "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>5</LocationId> <Remove>true</Remove> <UniqueId>f4a98c2b-57a1-4b24-a32a-74f2faadebac</UniqueId> <UserUniqueId>3</UserUniqueId> </APIWishList>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResultName | 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>