POST api/V1/DeleteFromFavorite?customerId={customerId}&productId={productId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

integer

Required

productId

integer

Required

Body Parameters

None.

Response Information

Resource Description

GeneralResponse
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

CustomerID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "CustomerID": 3
}

multipart/form-data

Sample:
{"status":"sample string 1","message":"sample string 2","CustomerID":3}

application/xml, text/xml

Sample:
<GeneralResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.ViewModel">
  <CustomerID>3</CustomerID>
  <message>sample string 2</message>
  <status>sample string 1</status>
</GeneralResponse>