PUT api/Content/v3/AddFavRequest
Request Information
URI Parameters
None.
Body Parameters
APILikeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| UserUniqueId | integer |
None. |
|
| LocationId | integer |
None. |
|
| BeerId | integer |
None. |
|
| ProductId | integer |
None. |
|
| Remove | boolean |
None. |
|
| SeminarId | integer |
None. |
|
| EventId | integer |
None. |
|
| SpeakerId | integer |
None. |
|
| ExhibitorId | integer |
None. |
|
| DealId | integer |
None. |
|
| CouponId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"UniqueId": "41b4e7cc-b472-4135-ac24-a45c6391eb7f",
"UserUniqueId": 3,
"LocationId": 4,
"BeerId": 5,
"ProductId": 6,
"Remove": true,
"SeminarId": 8,
"EventId": 9,
"SpeakerId": 10,
"ExhibitorId": 11,
"DealId": 12,
"CouponId": 13
}
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> <CouponId>13</CouponId> <CustomerId>1</CustomerId> <DealId>12</DealId> <EventId>9</EventId> <ExhibitorId>11</ExhibitorId> <LocationId>4</LocationId> <ProductId>6</ProductId> <Remove>true</Remove> <SeminarId>8</SeminarId> <SpeakerId>10</SpeakerId> <UniqueId>41b4e7cc-b472-4135-ac24-a45c6391eb7f</UniqueId> <UserUniqueId>3</UserUniqueId> </APILikeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional 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>