GET v1/bills/{id}/notes?PageIndex={PageIndex}&PageSize={PageSize}

Gets list of notes for the bill specified by bill id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Provide bill id to get notes for

integer

Required

PageIndex

0 based index for Page Number

integer

Required

PageSize

No. of records to fetch, default value is 100

integer

Default value is 100

Body Parameters

None.

Response Information

Resource Description

Collection of NotesLog
NameDescriptionTypeAdditional information
Notes

string

None.

CreatedBy

IdNamePair

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "notes": "sample string 1",
    "createdBy": {
      "id": 1,
      "name": "sample string 2"
    }
  },
  {
    "notes": "sample string 1",
    "createdBy": {
      "id": 1,
      "name": "sample string 2"
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotesLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAPI.Models.Core">
  <NotesLog>
    <CreatedBy xmlns:d3p1="http://schemas.datacontract.org/2004/07/Striven.Common.Models">
      <d3p1:_x003C_Id_x003E_k__BackingField>1</d3p1:_x003C_Id_x003E_k__BackingField>
      <d3p1:_x003C_Name_x003E_k__BackingField>sample string 2</d3p1:_x003C_Name_x003E_k__BackingField>
    </CreatedBy>
    <Notes>sample string 1</Notes>
  </NotesLog>
  <NotesLog>
    <CreatedBy xmlns:d3p1="http://schemas.datacontract.org/2004/07/Striven.Common.Models">
      <d3p1:_x003C_Id_x003E_k__BackingField>1</d3p1:_x003C_Id_x003E_k__BackingField>
      <d3p1:_x003C_Name_x003E_k__BackingField>sample string 2</d3p1:_x003C_Name_x003E_k__BackingField>
    </CreatedBy>
    <Notes>sample string 1</Notes>
  </NotesLog>
</ArrayOfNotesLog>