POST api/v2.0/Messaging/ReplyToMessage
Submits a new reply to a specified Mailbox Message to the original message's author.
Request Information
URI Parameters
None.
Body Parameters
Parameters that define the message to which to reply and the contact to whom to send the message
ReplyToMessageRequestName | 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": "3bbbaff2-3252-459e-9f54-3c8d30cb49dd", "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>3bbbaff2-3252-459e-9f54-3c8d30cb49dd</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>