POST api/Budget/GetMonthlyBudget
Request Information
URI Parameters
None.
Body Parameters
GetMonthlyBudgetModelName | Description | Type | Additional information |
---|---|---|---|
MeseRiferimento | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "MeseRiferimento": "2025-05-21T19:32:14.9232645+02:00" }
application/xml, text/xml
Sample:
<GetMonthlyBudgetModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeFinance.Models"> <MeseRiferimento>2025-05-21T19:32:14.9232645+02:00</MeseRiferimento> </GetMonthlyBudgetModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
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>