GET api/statementnotes
GET: api/statementnotes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StatementNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
StatementNoteId |
integer |
None. |
| NoteCode |
NoteCode |
string |
None. |
| NoteDate |
NoteDate |
date |
None. |
| Note |
Note |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"noteCode": "sample string 2",
"noteDate": "2025-10-29T04:34:07.1607621-04:00",
"note": "sample string 3"
},
{
"id": 1,
"noteCode": "sample string 2",
"noteDate": "2025-10-29T04:34:07.1607621-04:00",
"note": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfStatementNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<StatementNoteViewModel>
<Id>1</Id>
<Note>sample string 3</Note>
<NoteCode>sample string 2</NoteCode>
<NoteDate>2025-10-29T04:34:07.1607621-04:00</NoteDate>
</StatementNoteViewModel>
<StatementNoteViewModel>
<Id>1</Id>
<Note>sample string 3</Note>
<NoteCode>sample string 2</NoteCode>
<NoteDate>2025-10-29T04:34:07.1607621-04:00</NoteDate>
</StatementNoteViewModel>
</ArrayOfStatementNoteViewModel>