GET api/statementnotes/{id}

GET: api/statementnotes/{id} Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

StatementNoteViewModel

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:21:50.1787432-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>2024-10-14T08:21:50.1787432-04:00</NoteDate>
</StatementNoteViewModel>