POST api/BeerMeBookmarkedList

Request Information

URI Parameters

None.

Body Parameters

BeerMeRequestModel
NameDescriptionTypeAdditional information
searchTerm

string

None.

currentLatitude

string

None.

currentLongitude

string

None.

latitude

string

None.

longitude

string

None.

pageNo

integer

None.

brandId

string

None.

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "searchTerm": "sample string 1",
  "currentLatitude": "sample string 2",
  "currentLongitude": "sample string 3",
  "latitude": "sample string 4",
  "longitude": "sample string 5",
  "pageNo": 6,
  "brandId": "sample string 7",
  "UserId": 8
}

application/xml, text/xml

Sample:
<BeerMeRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlutenDude.BusinessEntity.API">
  <UserId>8</UserId>
  <brandId>sample string 7</brandId>
  <currentLatitude>sample string 2</currentLatitude>
  <currentLongitude>sample string 3</currentLongitude>
  <latitude>sample string 4</latitude>
  <longitude>sample string 5</longitude>
  <pageNo>6</pageNo>
  <searchTerm>sample string 1</searchTerm>
</BeerMeRequestModel>

multipart/form-data

Sample:
<BeerMeRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlutenDude.BusinessEntity.API"><UserId>8</UserId><brandId>sample string 7</brandId><currentLatitude>sample string 2</currentLatitude><currentLongitude>sample string 3</currentLongitude><latitude>sample string 4</latitude><longitude>sample string 5</longitude><pageNo>6</pageNo><searchTerm>sample string 1</searchTerm></BeerMeRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BeerMeRequestModel'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.