GET BankAccountNote/Get/{id}

Gets the specified Bank Account Note based on the identifier.

Request Information

URI Parameters

NameTypeAdditional informationDescription
id integer

Required

The Bank Account Note ID.

Body Parameters

None.

Response Information

Resource Description

Bank Account Note
NameTypeAdditional informationDescription
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": "2024-03-28",
  "ActionDate": "2024-03-28",
  "Status": true,
  "Note": "sample string 4",
  "HasAttachments": true
}