GET api/statementnotes

GET: api/statementnotes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of StatementNoteViewModel
NameDescriptionTypeAdditional 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": "2024-10-14T08:25:01.6147801-04:00",
    "note": "sample string 3"
  },
  {
    "id": 1,
    "noteCode": "sample string 2",
    "noteDate": "2024-10-14T08:25:01.6147801-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>2024-10-14T08:25:01.6147801-04:00</NoteDate>
  </StatementNoteViewModel>
  <StatementNoteViewModel>
    <Id>1</Id>
    <Note>sample string 3</Note>
    <NoteCode>sample string 2</NoteCode>
    <NoteDate>2024-10-14T08:25:01.6147801-04:00</NoteDate>
  </StatementNoteViewModel>
</ArrayOfStatementNoteViewModel>