POST api/v1.0/Discussions/SendMessageToDiscussionPostAuthor
Sends an Inbox Message Reply to a specified Discussion Post's Author.
Request Information
URI Parameters
None.
Body Parameters
DiscussionPostReplyRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| Subject | 
                         Subject of the Discussion Post.  | 
                    string | 
                                 Max length: 255  | 
                
| Body | 
                         Body of the Discussion Post.  | 
                    string | 
                             None.  | 
                
| DiscussionPostKey | 
                         Unique Key of the Discussion Post to Reply to.  | 
                    globally unique identifier | 
                             None.  | 
                
| DocumentKey | 
                         Optional. Unique Key of the Library Entry (Document) you wish to attach to the Discussion Post Reply.  | 
                    globally unique identifier | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "Subject": "sample string 1",
  "Body": "sample string 2",
  "DiscussionPostKey": "d731378d-95e8-47fb-9919-e9d6214f3298",
  "DocumentKey": "c702ab4e-c816-4576-926b-a24a10815818"
}
        application/xml, text/xml
            Sample:
<DiscussionPostReplyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request"> <Body>sample string 2</Body> <DiscussionPostKey>d731378d-95e8-47fb-9919-e9d6214f3298</DiscussionPostKey> <DocumentKey>c702ab4e-c816-4576-926b-a24a10815818</DocumentKey> <Subject>sample string 1</Subject> </DiscussionPostReplyRequest>
Response Information
Resource Description
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>