GET api/estadisticas
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of stock| Name | Description | Type | Additional information |
|---|---|---|---|
| Estilo | string |
None. |
|
| Fermentador | integer |
None. |
|
| Barriles | decimal number |
None. |
|
| Reservado | integer |
None. |
|
| Total | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Estilo": "sample string 1",
"Fermentador": 2,
"Barriles": 3.1,
"Reservado": 4,
"Total": 5.1
},
{
"Estilo": "sample string 1",
"Fermentador": 2,
"Barriles": 3.1,
"Reservado": 4,
"Total": 5.1
}
]
application/xml, text/xml
Sample:
<ArrayOfstock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/sic">
<stock>
<Barriles>3.1</Barriles>
<Estilo>sample string 1</Estilo>
<Fermentador>2</Fermentador>
<Reservado>4</Reservado>
<Total>5.1</Total>
</stock>
<stock>
<Barriles>3.1</Barriles>
<Estilo>sample string 1</Estilo>
<Fermentador>2</Fermentador>
<Reservado>4</Reservado>
<Total>5.1</Total>
</stock>
</ArrayOfstock>