POST api/accounttypes

Insert a new AccountType

Request Information

URI Parameters

None.

Body Parameters

Create Account Type Model.

AccountTypeCreateViewModel
NameDescriptionTypeAdditional information
UserId

User Id

integer

Range: inclusive between 1 and 1.79769313486232E+308

Description

Description

string

Required

Request Formats

application/json, text/json

Sample:
{
  "userId": 1,
  "description": "sample string 2"
}

application/xml, text/xml

Sample:
<AccountTypeCreateViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <Description>sample string 2</Description>
  <UserId>1</UserId>
</AccountTypeCreateViewModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AccountTypeCreateViewModel'.

Response Information

Resource Description

AccountTypeViewModel
NameDescriptionTypeAdditional information
AccountTypeId

AccountTypeId

integer

None.

Description

Description

string

None.

IsUserEditable

IsUserEditable

boolean

None.

IsInterestBearingAccount

IsInterestBearingAccount

boolean

None.

IsDescriptionRequired

Required all fields

boolean

None.

CreatedOn

CreatedOn

date

None.

CreatedBy

CreatedBy

integer

None.

ModifiedOn

ModifiedOn

date

None.

ModifiedBy

ModifiedBy

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "accountTypeId": 1,
  "description": "sample string 2",
  "isUserEditable": true,
  "isInterestBearingAccount": true,
  "isDescriptionRequired": true,
  "createdOn": "2024-10-13T11:37:28.4175694-04:00",
  "createdBy": 7,
  "modifiedOn": "2024-10-13T11:37:28.4175694-04:00",
  "modifiedBy": 1
}

application/xml, text/xml

Sample:
<AccountTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <AccountTypeId>1</AccountTypeId>
  <CreatedBy>7</CreatedBy>
  <CreatedOn>2024-10-13T11:37:28.4175694-04:00</CreatedOn>
  <Description>sample string 2</Description>
  <IsDescriptionRequired>true</IsDescriptionRequired>
  <IsInterestBearingAccount>true</IsInterestBearingAccount>
  <IsUserEditable>true</IsUserEditable>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2024-10-13T11:37:28.4175694-04:00</ModifiedOn>
</AccountTypeViewModel>