POST api/MyFavoriteList
Request Information
URI Parameters
None.
Body Parameters
SaveMyFavoriteListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Sku | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "dbbe4b9c-13ec-4ec4-991b-75baa9c96fb7",
"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>dbbe4b9c-13ec-4ec4-991b-75baa9c96fb7</UserId> </SaveMyFavoriteListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SaveMyFavoriteListResponse| Name | 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>