GET api/Communication/GetMessages?refno={refno}

API URL: https://api.alpsltd.co.uk/api/Communication/GetMessages?refno={refno}

gets the list of communications

Request Information

Authorisation Type

Basic Auth

URI Parameters

NameDescriptionTypeAdditional information
refno

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Communication
NameDescriptionTypeAdditional information
ClaimID

The ID of the claim

integer
FromALPS

Messages sent by ALPS

boolean
Message

The message you want to send

string
MessageDate

The date the message was sent

date
MessageRead

Has the message been read

boolean

Response Formats

application/json, text/json

Sample:
[
  {
    "ClaimID": 1,
    "FromALPS": true,
    "Message": "sample string 3",
    "MessageDate": "2026-05-28T10:58:01.2594053+01:00",
    "MessageRead": true
  },
  {
    "ClaimID": 1,
    "FromALPS": true,
    "Message": "sample string 3",
    "MessageDate": "2026-05-28T10:58:01.2594053+01:00",
    "MessageRead": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCommunication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Communication>
    <ClaimID>1</ClaimID>
    <FromALPS>true</FromALPS>
    <Message>sample string 3</Message>
    <MessageDate>2026-05-28T10:58:01.2594053+01:00</MessageDate>
    <MessageRead>true</MessageRead>
  </Communication>
  <Communication>
    <ClaimID>1</ClaimID>
    <FromALPS>true</FromALPS>
    <Message>sample string 3</Message>
    <MessageDate>2026-05-28T10:58:01.2594053+01:00</MessageDate>
    <MessageRead>true</MessageRead>
  </Communication>
</ArrayOfCommunication>