POST api/AccountSettings?BookId={BookId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BookId

integer

Required

Body Parameters

None.

Response Information

Resource Description

AccountSettingsVM
NameDescriptionTypeAdditional information
CashLimitAmount

decimal number

None.

GeneralCategoryId

integer

None.

CashAccountId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "CashLimitAmount": 1.0,
  "GeneralCategoryId": 2,
  "CashAccountId": 3
}

application/xml, text/xml

Sample:
<AccountSettingsVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CashAccountId>3</CashAccountId>
  <CashLimitAmount>1</CashLimitAmount>
  <GeneralCategoryId>2</GeneralCategoryId>
</AccountSettingsVM>