POST api/benefits/budget/personal/update
Request Information
URI Parameters
None.
Body Parameters
BudgetRecord| Name | Description | Type | Additional information |
|---|---|---|---|
| usr_id | integer |
None. |
|
| year | integer |
None. |
|
| month | integer |
None. |
|
| budget_spent | decimal number |
None. |
|
| comment | string |
None. |
|
| create_date | date |
None. |
|
| accepted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"usr_id": 1,
"year": 2,
"month": 3,
"budget_spent": 4.0,
"comment": "sample string 5",
"create_date": "2025-12-15T17:07:06.0841309+01:00",
"accepted": 7
}
application/xml, text/xml
Sample:
<BudgetRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aplikacija_za_prijavu_Evenata.Models"> <accepted>7</accepted> <budget_spent>4</budget_spent> <comment>sample string 5</comment> <create_date>2025-12-15T17:07:06.0841309+01:00</create_date> <month>3</month> <usr_id>1</usr_id> <year>2</year> </BudgetRecord>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.