POST BankAccountNote/Save
Saves the specified Bank Account Note.
Request Information
URI Parameters
None.
Body Parameters
The Bank Account Note.
Bank Account Note| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
Required |
|
| Subject | string |
Required String length: inclusive between 0 and 100 |
|
| EntryDate | nullable date |
None. |
|
| ActionDate | date |
Required |
|
| Status | nullable bool |
None. |
|
| Note | string |
None. |
|
| HasAttachments | nullable bool |
None. |
|
| BankAccountId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BankAccountId": 1,
"ID": 2,
"Subject": "sample string 3",
"EntryDate": "2025-11-01",
"ActionDate": "2025-11-01",
"Status": true,
"Note": "sample string 4",
"HasAttachments": true
}
Response Information
Resource Description
Bank Account Note| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
Required |
|
| Subject | string |
Required String length: inclusive between 0 and 100 |
|
| EntryDate | nullable date |
None. |
|
| ActionDate | date |
Required |
|
| Status | nullable bool |
None. |
|
| Note | string |
None. |
|
| HasAttachments | nullable bool |
None. |
|
| BankAccountId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"BankAccountId": 1,
"ID": 2,
"Subject": "sample string 3",
"EntryDate": "2025-11-01",
"ActionDate": "2025-11-01",
"Status": true,
"Note": "sample string 4",
"HasAttachments": true
}