POST api/v2.0/Discussions/ReplyToDiscussionAnonymously
Submit a Discussion Post using the System's Anonymous user. This functionality requires Anonymous Posting to be enabled at the system level.
Request Information
URI Parameters
None.
Body Parameters
Details of the Discussion Post.
DiscussionPostReplyRequestName | Description | Type | Additional information |
---|---|---|---|
Subject |
Subject of the Discussion Post. |
string |
None. |
Body |
Body of the Discussion Post. |
string |
None. |
DiscussionPostKey |
Unique Key of the Discussion Post to Reply to. |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Subject": "sample string 1", "Body": "sample string 2", "DiscussionPostKey": "ee5960d3-d32d-4d5c-bb97-a0ea5bb32460" }
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>ee5960d3-d32d-4d5c-bb97-a0ea5bb32460</DiscussionPostKey> <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>