GET api/Claims/GetNotes/{id}

API URL: https://api.alpsltd.co.uk/api/Claims/GetNotes/{id}

returns all notes for a specific claim

Request Information

Authorisation Type

Basic Auth

URI Parameters

NameDescriptionTypeAdditional information
id

the claim's id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Notes
NameDescriptionTypeAdditional information
NoteID

The note ID

integer
ClaimID

The claim reference

integer
datecreated

The date the note was created

date
Note

The note message

string
CreatedBy

The initials of the user that created the note

string

Response Formats

application/json, text/json

Sample:
[
  {
    "NoteID": 1,
    "ClaimID": 2,
    "datecreated": "2026-05-28T10:57:56.5268717+01:00",
    "Note": "sample string 4",
    "CreatedBy": "sample string 5"
  },
  {
    "NoteID": 1,
    "ClaimID": 2,
    "datecreated": "2026-05-28T10:57:56.5268717+01:00",
    "Note": "sample string 4",
    "CreatedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Notes>
    <ClaimID>2</ClaimID>
    <CreatedBy>sample string 5</CreatedBy>
    <Note>sample string 4</Note>
    <NoteID>1</NoteID>
    <datecreated>2026-05-28T10:57:56.5268717+01:00</datecreated>
  </Notes>
  <Notes>
    <ClaimID>2</ClaimID>
    <CreatedBy>sample string 5</CreatedBy>
    <Note>sample string 4</Note>
    <NoteID>1</NoteID>
    <datecreated>2026-05-28T10:57:56.5268717+01:00</datecreated>
  </Notes>
</ArrayOfNotes>