GET api/statementnotes/{id}
GET: api/statementnotes/{id} Get the item information by the Id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StatementNoteViewModel
StatementNoteViewModelName | 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-04-03T17:40:10.6051674-04:00", "note": "sample string 3" }
application/xml, text/xml
Sample:
<StatementNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <Id>1</Id> <Note>sample string 3</Note> <NoteCode>sample string 2</NoteCode> <NoteDate>2025-04-03T17:40:10.6051674-04:00</NoteDate> </StatementNoteViewModel>