POST api/v1.0/Discussions/PostToDiscussion
Post a Message to the specified Discussion.
Request Information
URI Parameters
None.
Body Parameters
NewDiscussionPostRequestName | Description | Type | Additional information |
---|---|---|---|
Subject |
Subject of the Discussion Post. |
string |
Required Max length: 255 |
Body |
Body of the Discussion Post. |
string |
Required |
DiscussionKey |
Unique Key of the Discussion to Post to. |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{ "Subject": "sample string 1", "Body": "sample string 2", "DiscussionKey": "b7c58bbb-09ed-4827-bef9-3c1f8de5c51f" }
application/xml, text/xml
Sample:
<NewDiscussionPostRequest 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> <DiscussionKey>b7c58bbb-09ed-4827-bef9-3c1f8de5c51f</DiscussionKey> <Subject>sample string 1</Subject> </NewDiscussionPostRequest>
Response Information
Resource Description
True or False to indicate success.
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>