POST api/MyFavoriteList

Request Information

URI Parameters

None.

Body Parameters

SaveMyFavoriteListRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Sku

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "b567b854-8355-4b16-bd64-908190dd74a9",
  "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>b567b854-8355-4b16-bd64-908190dd74a9</UserId>
</SaveMyFavoriteListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SaveMyFavoriteListResponse
NameDescriptionTypeAdditional 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>