PUT api/Content/v3/RemoveFromFav

Request Information

URI Parameters

None.

Body Parameters

APILikeRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

UniqueId

globally unique identifier

None.

UserUniqueId

integer

None.

LocationId

integer

None.

BeerId

integer

None.

Remove

boolean

None.

SeminarId

integer

None.

EventId

integer

None.

SpeakerId

integer

None.

ExhibitorId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "UniqueId": "b993a6d0-18db-469c-979d-5d9429ca7699",
  "UserUniqueId": 3,
  "LocationId": 4,
  "BeerId": 5,
  "Remove": true,
  "SeminarId": 7,
  "EventId": 8,
  "SpeakerId": 9,
  "ExhibitorId": 10
}

application/xml, text/xml

Sample:
<APILikeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <BeerId>5</BeerId>
  <CustomerId>1</CustomerId>
  <EventId>8</EventId>
  <ExhibitorId>10</ExhibitorId>
  <LocationId>4</LocationId>
  <Remove>true</Remove>
  <SeminarId>7</SeminarId>
  <SpeakerId>9</SpeakerId>
  <UniqueId>b993a6d0-18db-469c-979d-5d9429ca7699</UniqueId>
  <UserUniqueId>3</UserUniqueId>
</APILikeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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