POST api/v2.0/Messaging/ReplyToMessage
Submits a new Discussion Post in Reply to a specified Mailbox Message.
Request Information
URI Parameters
None.
Body Parameters
ReplyToMessageRequestName | Description | Type | Additional information |
---|---|---|---|
MailboxMessageKey | globally unique identifier |
None. |
|
Subject | string |
None. |
|
Body | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "MailboxMessageKey": "1851401e-9d96-4208-bf90-f2c108e13840", "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>1851401e-9d96-4208-bf90-f2c108e13840</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>