POST api/MyFavoriteList
Request Information
URI Parameters
None.
Body Parameters
SaveMyFavoriteListRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
Sku | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "6c68b6b7-9d65-4321-a1b7-2b1077a0db08", "Sku": "sample string 2" }
application/xml, text/xml
Sample:
<SaveMyFavoriteListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <Sku>sample string 2</Sku> <Source>sample string 3</Source> <UserId>6c68b6b7-9d65-4321-a1b7-2b1077a0db08</UserId> </SaveMyFavoriteListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SaveMyFavoriteListResponseName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Exist | boolean |
None. |
|
IsOverLimit | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Exist": true, "IsOverLimit": true }
application/xml, text/xml
Sample:
<SaveMyFavoriteListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Exist>true</Exist> <IsOverLimit>true</IsOverLimit> <Success>true</Success> </SaveMyFavoriteListResponse>