POST api/BudgetAccount/Update

Request Information

URI Parameters

None.

Body Parameters

BudgetAccountViewModel
NameDescriptionTypeAdditional information
ID

integer

None.

AccountType

string

None.

AccountCode

string

None.

AccountName

string

None.

IsReadOnly

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "AccountType": "sample string 2",
  "AccountCode": "sample string 3",
  "AccountName": "sample string 4",
  "IsReadOnly": true
}

application/xml, text/xml

Sample:
<BudgetAccountViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizFramework.Web.Services.Areas.Budget.ViewModel">
  <AccountCode>sample string 3</AccountCode>
  <AccountName>sample string 4</AccountName>
  <AccountType>sample string 2</AccountType>
  <ID>1</ID>
  <IsReadOnly>true</IsReadOnly>
</BudgetAccountViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultViewModel
NameDescriptionTypeAdditional information
ID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1
}

application/xml, text/xml

Sample:
<ResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizFramework.Web.Services.ViewModel">
  <ID>1</ID>
</ResultViewModel>