POST api/chat/send
Request Information
URI Parameters
None.
Body Parameters
SendChatMessageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrandId | integer |
None. |
|
| MessageType | string |
None. |
|
| Body | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ErrandId": 1,
"MessageType": "sample string 2",
"Body": "sample string 3"
}
application/xml, text/xml
Sample:
<SendChatMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RunnerMe.Controllers"> <Body>sample string 3</Body> <ErrandId>1</ErrandId> <MessageType>sample string 2</MessageType> </SendChatMessageRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.