POST api/v1.0/Messaging/ReplyToMessage
Submits a reply to a specified Mailbox Message.
Request Information
URI Parameters
None.
Body Parameters
ReplyToMessageRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| MailboxMessageKey | Key of the mailbox message to which this is a reply | globally unique identifier | None. | 
| Subject | Subject of the reply, omit to use the subject from the message being replied to | string | None. | 
| Body | Content of the reply | string | Required Min length: 1 | 
Request Formats
application/json, text/json
            Sample:
        
{
  "MailboxMessageKey": "36c5eebf-48f1-4502-8323-7eae21b58545",
  "Subject": "sample string 2",
  "Body": "sample string 3"
}
        application/xml, text/xml
            Sample:
<ReplyToMessageRequest 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> <MailboxMessageKey>36c5eebf-48f1-4502-8323-7eae21b58545</MailboxMessageKey> <Subject>sample string 2</Subject> </ReplyToMessageRequest>
Response Information
Resource Description
True if successful, false otherwise.
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>