POST accounts/{accountId}/accountingCodeTypes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | string |
None. |
Body Parameters
AccountingCodeTypeCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountId | integer |
None. |
|
| Description | string |
Required |
|
| Required | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountId": 1,
"Description": "sample string 2",
"Required": true
}
Response Information
Resource Description
AccountingCodeTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AccountId | integer |
None. |
|
| Description | string |
Required |
|
| Required | boolean |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Id": 1,
"AccountId": 2,
"Description": "sample string 3",
"Required": true
}