GET api/entities/{entityId}/budgets/ach-holdbacks

GET: ach-holdbacks

Request Information

URI Parameters

NameDescriptionTypeAdditional information
entityId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BudgetChartOfAccountViewModel
NameDescriptionTypeAdditional information
ChartOfAccountId

integer

None.

GlAccountId

integer

None.

IsAchHoldbackActive

boolean

None.

SubAccounts

Collection of BudgetSubAccountViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "chartOfAccountId": 1,
  "glAccountId": 2,
  "isAchHoldbackActive": true,
  "subAccounts": [
    {
      "subAccountId": 1,
      "subAccountName": "sample string 2",
      "isAchHoldbackActive": true
    },
    {
      "subAccountId": 1,
      "subAccountName": "sample string 2",
      "isAchHoldbackActive": true
    }
  ]
}

application/xml, text/xml

Sample:
<BudgetChartOfAccountViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Controllers.Entities.Models">
  <ChartOfAccountId>1</ChartOfAccountId>
  <GlAccountId>2</GlAccountId>
  <IsAchHoldbackActive>true</IsAchHoldbackActive>
  <SubAccounts>
    <BudgetSubAccountViewModel>
      <IsAchHoldbackActive>true</IsAchHoldbackActive>
      <SubAccountId>1</SubAccountId>
      <SubAccountName>sample string 2</SubAccountName>
    </BudgetSubAccountViewModel>
    <BudgetSubAccountViewModel>
      <IsAchHoldbackActive>true</IsAchHoldbackActive>
      <SubAccountId>1</SubAccountId>
      <SubAccountName>sample string 2</SubAccountName>
    </BudgetSubAccountViewModel>
  </SubAccounts>
</BudgetChartOfAccountViewModel>