POST v1/consumers/customer-communication/messages/send
Request Information
URI Parameters
None.
Body Parameters
CustomerCommunicationCreateMessageThreadRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Subject | string |
Required String length: inclusive between 2 and 100 |
|
| Category | MessageCategoryEnumeration |
None. |
|
| Message | string |
Required String length: inclusive between 2 and 500 |
|
| IsDraft | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Subject": "sample string 1",
"Category": "NULL",
"Message": "sample string 2",
"IsDraft": true
}
application/xml, text/xml
Sample:
<CustomerCommunicationCreateMessageThreadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfMobileApi.Models"> <Category>NULL</Category> <IsDraft>true</IsDraft> <Message>sample string 2</Message> <Subject>sample string 1</Subject> </CustomerCommunicationCreateMessageThreadRequest>
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.