POST api/Chat/SendNotification
Request Information
URI Parameters
None.
Body Parameters
PostData| Name | Description | Type | Additional information |
|---|---|---|---|
| MsgTo | string |
None. |
|
| MsgFrom | string |
None. |
|
| Msg | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MsgTo": "sample string 1",
"MsgFrom": "sample string 2",
"Msg": "sample string 3"
}
application/xml, text/xml
Sample:
<PostData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iConceiveAPI.Models"> <Msg>sample string 3</Msg> <MsgFrom>sample string 2</MsgFrom> <MsgTo>sample string 1</MsgTo> </PostData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>