POST api/accounttypes
Insert a new AccountType
Request Information
URI Parameters
None.
Body Parameters
Create Account Type Model.
AccountTypeCreateViewModelName | Description | Type | Additional information |
---|---|---|---|
UserId |
User Id |
integer |
Range: inclusive between 1 and 1.79769313486232E+308 |
Description |
Description |
string |
Required |
Request Formats
application/json, text/json
{ "userId": 1, "description": "sample string 2" }
application/xml, text/xml
<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
Response Information
Resource Description
AccountTypeViewModelName | Description | Type | Additional 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
{ "accountTypeId": 1, "description": "sample string 2", "isUserEditable": true, "isInterestBearingAccount": true, "isDescriptionRequired": true, "createdOn": "2025-04-03T17:37:46.9336577-04:00", "createdBy": 7, "modifiedOn": "2025-04-03T17:37:46.9336577-04:00", "modifiedBy": 1 }
application/xml, text/xml
<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>2025-04-03T17:37:46.9336577-04:00</CreatedOn> <Description>sample string 2</Description> <IsDescriptionRequired>true</IsDescriptionRequired> <IsInterestBearingAccount>true</IsInterestBearingAccount> <IsUserEditable>true</IsUserEditable> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2025-04-03T17:37:46.9336577-04:00</ModifiedOn> </AccountTypeViewModel>