PUT api/Content/v2/GetBeerStyleDetail
Request Information
URI Parameters
None.
Body Parameters
APIBeerStyleDetailRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| Id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"Id": 2
}
application/xml, text/xml
Sample:
<APIBeerStyleDetailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>1</CustomerId> <Id>2</Id> </APIBeerStyleDetailRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIBeerStyleDetailResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| ABV | string |
None. |
|
| IBU | string |
None. |
|
| SRM | string |
None. |
|
| OG | string |
None. |
|
| AE | string |
None. |
|
| Logo | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"ABV": "sample string 4",
"IBU": "sample string 5",
"SRM": "sample string 6",
"OG": "sample string 7",
"AE": "sample string 8",
"Logo": "sample string 9"
}
application/xml, text/xml
Sample:
<APIBeerStyleDetailResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <ABV>sample string 4</ABV> <AE>sample string 8</AE> <Description>sample string 3</Description> <IBU>sample string 5</IBU> <Id>1</Id> <Logo>sample string 9</Logo> <Name>sample string 2</Name> <OG>sample string 7</OG> <SRM>sample string 6</SRM> </APIBeerStyleDetailResponse>