GET api/glaccounts/{id}/notes

Get Audit Notes

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

GL Account Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

<see cref="T:System.Collections.Generic.List`1" />

Collection of NoteViewModel
NameDescriptionTypeAdditional information
CreatedBy

CreatedBy

string

None.

Id

Id

integer

None.

Note

Note

string

None.

IsSystemGenerated

IsSystemGenerated

boolean

None.

CreatedOn

CreatedOn

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "createdBy": "sample string 1",
    "id": 2,
    "note": "sample string 3",
    "isSystemGenerated": true,
    "createdOn": "2024-10-14T04:27:17.1084613-04:00"
  },
  {
    "createdBy": "sample string 1",
    "id": 2,
    "note": "sample string 3",
    "isSystemGenerated": true,
    "createdOn": "2024-10-14T04:27:17.1084613-04:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Notes">
  <NoteViewModel>
    <CreatedOn>2024-10-14T04:27:17.1084613-04:00</CreatedOn>
    <Id>2</Id>
    <IsSystemGenerated>true</IsSystemGenerated>
    <Note>sample string 3</Note>
    <CreatedBy>sample string 1</CreatedBy>
  </NoteViewModel>
  <NoteViewModel>
    <CreatedOn>2024-10-14T04:27:17.1084613-04:00</CreatedOn>
    <Id>2</Id>
    <IsSystemGenerated>true</IsSystemGenerated>
    <Note>sample string 3</Note>
    <CreatedBy>sample string 1</CreatedBy>
  </NoteViewModel>
</ArrayOfNoteViewModel>