POST api/v1.0/Messaging/SendMessageToContact

Sends a new Message to the specified Contact.

Request Information

URI Parameters

None.

Body Parameters

SendMessageToContactRequest
NameDescriptionTypeAdditional 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": "62766d9d-3070-4a7a-aaaf-526318b45817",
  "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>62766d9d-3070-4a7a-aaaf-526318b45817</ContactKey>
  <Subject>sample string 2</Subject>
</SendMessageToContactRequest>

Response Information

Resource Description

Collection of boolean

Response 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>