POST api/Communication/SendMessage

API URL: https://api.alpsltd.co.uk/api/Communication/SendMessage

send a message on a specific claim

Request Information

Authorisation Type

Basic Auth

URI Parameters

None.

Body Parameters

SendCommunication
NameDescriptionTypeAdditional information
ClaimID

The claim reference you want to send a message on

integer
Message

The message you want to send

string

Request Formats

application/json, text/json

Sample:
{
  "ClaimID": 1,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<SendCommunication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <ClaimID>1</ClaimID>
  <Message>sample string 2</Message>
</SendCommunication>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>