POST api/v1.0/Messaging/ReplyToMessage
Submits a reply to a specified Mailbox Message.
Request Information
URI Parameters
None.
Body Parameters
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": "b22a82fe-2877-42ce-84ed-8f8efd990031", "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>b22a82fe-2877-42ce-84ed-8f8efd990031</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>