GET api/advicenote/advicenote_list

The full list of available Advice Notes

Request Information

Authorization is required

Response Codes

  • OK (200)
  • BadRequest (400)
  • Unauthorized (401)
  • NotFound (404)

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a list of all available Advice Notes

Collection of advicenote
NameDescriptionTypeAdditional information
AdviceNoteCode

The Code of the Advice Note

string

None.

AdviceNoteText

The full text of the Advice Note

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AdviceNoteCode": "sample string 1",
    "AdviceNoteText": "sample string 2"
  },
  {
    "AdviceNoteCode": "sample string 1",
    "AdviceNoteText": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfadvicenote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RB209_WebApi.Models.AdviceNote">
  <advicenote>
    <AdviceNoteCode>sample string 1</AdviceNoteCode>
    <AdviceNoteText>sample string 2</AdviceNoteText>
  </advicenote>
  <advicenote>
    <AdviceNoteCode>sample string 1</AdviceNoteCode>
    <AdviceNoteText>sample string 2</AdviceNoteText>
  </advicenote>
</ArrayOfadvicenote>