POST api/v1.0/Messaging/SendMessageToContact
Sends a new Message to the specified Contact.
Request Information
URI Parameters
None.
Body Parameters
SendMessageToContactRequestName | Description | Type | Additional information |
---|---|---|---|
ContactKey | globally unique identifier |
None. |
|
Subject | string |
Required Min length: 1 |
|
Body | string |
Required Min length: 1 |
Request Formats
application/json, text/json
Sample:
{ "ContactKey": "56a0aec4-2863-4fbe-8321-6dd6a4920f22", "Subject": "sample string 2", "Body": "sample string 3" }
application/xml, text/xml
Sample:
<SendMessageToContactRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request"> <Body>sample string 3</Body> <ContactKey>56a0aec4-2863-4fbe-8321-6dd6a4920f22</ContactKey> <Subject>sample string 2</Subject> </SendMessageToContactRequest>
Response Information
Resource Description
Collection of booleanResponse Formats
application/json, text/json
Sample:
[ true, true ]
application/xml, text/xml
Sample:
<ArrayOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <boolean>true</boolean> <boolean>true</boolean> </ArrayOfboolean>