GET api/budget/funds?year={year}&entityId={entityId}
GET: api/Budget
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
year |
|
integer |
Required |
entityId |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The list of funds for the budget with the year and the entity id passed as parameters
Collection of FundViewModelName | Description | Type | Additional information |
---|---|---|---|
Id |
Id |
integer |
None. |
Name |
Name |
string |
None. |
Code |
Code |
string |
None. |
EffectiveDate |
EffectiveDate |
date |
None. |
FundTypeId |
FundTypeId |
integer |
None. |
SuperEntityId |
SuperEntityId |
integer |
None. |
RetireDate |
RetireDate |
date |
None. |
ClosingChartOfAccountId |
ClosingChartOfAccountId |
integer |
None. |
InterFundChartOfAccountId |
InterFundChartOfAccountId |
integer |
None. |
IsDefault |
IsDefault |
boolean |
None. |
Response Formats
application/json, text/json
[ { "id": 1, "name": "sample string 2", "code": "sample string 3", "effectiveDate": "2025-04-03T17:52:16.9249905-04:00", "fundTypeId": 5, "superEntityId": 6, "retireDate": "2025-04-03T17:52:16.9249905-04:00", "closingChartOfAccountId": 7, "interFundChartOfAccountId": 8, "isDefault": true }, { "id": 1, "name": "sample string 2", "code": "sample string 3", "effectiveDate": "2025-04-03T17:52:16.9249905-04:00", "fundTypeId": 5, "superEntityId": 6, "retireDate": "2025-04-03T17:52:16.9249905-04:00", "closingChartOfAccountId": 7, "interFundChartOfAccountId": 8, "isDefault": true } ]
application/xml, text/xml
<ArrayOfFundViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <FundViewModel> <ClosingChartOfAccountId>7</ClosingChartOfAccountId> <Code>sample string 3</Code> <EffectiveDate>2025-04-03T17:52:16.9249905-04:00</EffectiveDate> <FundTypeId>5</FundTypeId> <Id>1</Id> <InterFundChartOfAccountId>8</InterFundChartOfAccountId> <IsDefault>true</IsDefault> <Name>sample string 2</Name> <RetireDate>2025-04-03T17:52:16.9249905-04:00</RetireDate> <SuperEntityId>6</SuperEntityId> </FundViewModel> <FundViewModel> <ClosingChartOfAccountId>7</ClosingChartOfAccountId> <Code>sample string 3</Code> <EffectiveDate>2025-04-03T17:52:16.9249905-04:00</EffectiveDate> <FundTypeId>5</FundTypeId> <Id>1</Id> <InterFundChartOfAccountId>8</InterFundChartOfAccountId> <IsDefault>true</IsDefault> <Name>sample string 2</Name> <RetireDate>2025-04-03T17:52:16.9249905-04:00</RetireDate> <SuperEntityId>6</SuperEntityId> </FundViewModel> </ArrayOfFundViewModel>