POST api/Message/AddClaimMessage
Add a new claim message
Request Information
URI Parameters
None.
Body Parameters
Content of the message
ClaimMessageInputName | Description | Type | Additional information |
---|---|---|---|
ClaimId | integer |
None. |
|
MessageType | string |
None. |
|
Source | string |
None. |
|
Content | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ClaimId": 1, "MessageType": "Claim", "Source": "sample string 2", "Content": "sample string 3" }
application/xml, text/xml
Sample:
<ClaimMessageInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MemberPortal.API.Models"> <Content>sample string 3</Content> <Source>sample string 2</Source> <ClaimId>1</ClaimId> </ClaimMessageInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Success of the process
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>