GET Transaction/GetNote?noteid={noteid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| noteid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionNote| Name | Description | Type | Additional information |
|---|---|---|---|
| note_id | integer |
None. |
|
| transaction_id | integer |
None. |
|
| remark | string |
None. |
|
| date_added | date |
None. |
|
| added_by | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"note_id": 1,
"transaction_id": 2,
"remark": "sample string 3",
"date_added": "2026-06-04T19:49:38.4548532-07:00",
"added_by": "sample string 5"
}
application/xml, text/xml
Sample:
<TransactionNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model"> <added_by>sample string 5</added_by> <date_added>2026-06-04T19:49:38.4548532-07:00</date_added> <note_id>1</note_id> <remark>sample string 3</remark> <transaction_id>2</transaction_id> </TransactionNote>