GET api/Budget/GetYearlyBudget?anno={anno}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
anno | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BudgetProgressBarName | Description | Type | Additional information |
---|---|---|---|
VALORE_SPESO | decimal number |
None. |
|
VALORE_TOTALE | decimal number |
None. |
|
DESCRIZIONE_TIPO_SPESA | string |
None. |
|
COLORE | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "VALORE_SPESO": 1.0, "VALORE_TOTALE": 2.0, "DESCRIZIONE_TIPO_SPESA": "sample string 3", "COLORE": "sample string 4" }, { "VALORE_SPESO": 1.0, "VALORE_TOTALE": 2.0, "DESCRIZIONE_TIPO_SPESA": "sample string 3", "COLORE": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfBudgetProgressBar xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeFinance.Models"> <BudgetProgressBar> <COLORE>sample string 4</COLORE> <DESCRIZIONE_TIPO_SPESA>sample string 3</DESCRIZIONE_TIPO_SPESA> <VALORE_SPESO>1</VALORE_SPESO> <VALORE_TOTALE>2</VALORE_TOTALE> </BudgetProgressBar> <BudgetProgressBar> <COLORE>sample string 4</COLORE> <DESCRIZIONE_TIPO_SPESA>sample string 3</DESCRIZIONE_TIPO_SPESA> <VALORE_SPESO>1</VALORE_SPESO> <VALORE_TOTALE>2</VALORE_TOTALE> </BudgetProgressBar> </ArrayOfBudgetProgressBar>