GET api/budgets
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of budget| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| station_code | string |
None. |
|
| start_date | date |
None. |
|
| end_date | date |
None. |
|
| ft_headcount | integer |
None. |
|
| pt_headcount | integer |
None. |
|
| position | string |
None. |
|
| budget_hours | decimal number |
None. |
|
| comments | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"station_code": "sample string 2",
"start_date": "2025-12-12T03:40:08.945523-06:00",
"end_date": "2025-12-12T03:40:08.945523-06:00",
"ft_headcount": 5,
"pt_headcount": 6,
"position": "sample string 7",
"budget_hours": 1.0,
"comments": "sample string 8"
},
{
"id": 1,
"station_code": "sample string 2",
"start_date": "2025-12-12T03:40:08.945523-06:00",
"end_date": "2025-12-12T03:40:08.945523-06:00",
"ft_headcount": 5,
"pt_headcount": 6,
"position": "sample string 7",
"budget_hours": 1.0,
"comments": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfbudget xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EvokeAPI">
<budget>
<budget_hours>1</budget_hours>
<comments>sample string 8</comments>
<end_date>2025-12-12T03:40:08.945523-06:00</end_date>
<ft_headcount>5</ft_headcount>
<id>1</id>
<position>sample string 7</position>
<pt_headcount>6</pt_headcount>
<start_date>2025-12-12T03:40:08.945523-06:00</start_date>
<station_code>sample string 2</station_code>
</budget>
<budget>
<budget_hours>1</budget_hours>
<comments>sample string 8</comments>
<end_date>2025-12-12T03:40:08.945523-06:00</end_date>
<ft_headcount>5</ft_headcount>
<id>1</id>
<position>sample string 7</position>
<pt_headcount>6</pt_headcount>
<start_date>2025-12-12T03:40:08.945523-06:00</start_date>
<station_code>sample string 2</station_code>
</budget>
</ArrayOfbudget>