GET api/RelatorioDespesa/GetValueItens?relatorioId={relatorioId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| relatorioId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TotalDespesa| Name | Description | Type | Additional information |
|---|---|---|---|
| Descricao | string |
None. |
|
| ValorTotal | decimal number |
None. |
|
| ValorLiberado | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Descricao": "sample string 1",
"ValorTotal": 2.1,
"ValorLiberado": 3.1
},
{
"Descricao": "sample string 1",
"ValorTotal": 2.1,
"ValorLiberado": 3.1
}
]
text/html
Sample:
[{"Descricao":"sample string 1","ValorTotal":2.1,"ValorLiberado":3.1},{"Descricao":"sample string 1","ValorTotal":2.1,"ValorLiberado":3.1}]
application/xml, text/xml
Sample:
<ArrayOfTotalDespesa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Suberbac.WebApi.Models">
<TotalDespesa>
<Descricao>sample string 1</Descricao>
<ValorLiberado>3.1</ValorLiberado>
<ValorTotal>2.1</ValorTotal>
</TotalDespesa>
<TotalDespesa>
<Descricao>sample string 1</Descricao>
<ValorLiberado>3.1</ValorLiberado>
<ValorTotal>2.1</ValorTotal>
</TotalDespesa>
</ArrayOfTotalDespesa>