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": "b5664e64-abd9-435f-8b60-c16e96b4a7f6",
  "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>b5664e64-abd9-435f-8b60-c16e96b4a7f6</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>