POST api/v1.0/Discussions/PostToDiscussionAnonymously
Request Information
URI Parameters
None.
Body Parameters
PostDiscussionMessageRequestName | Description | Type | Additional information |
---|---|---|---|
DiscussionKey |
Unique Key of the Discussion to Post to. A discussion and community have a one to one relationship, so either this or the CommunityKey must be provided when posting a discussion message. Both are not needed. |
globally unique identifier |
None. |
CommunityKey |
Unique Key of the Community to Post to. A discussion and community have a one to one relationship, so either this or the DiscussionKey must be provided when posting a discussion message. Both are not needed. |
globally unique identifier |
None. |
DocumentKey |
Unique Key of Document to attach to the Discussion Post. This field is optional. |
globally unique identifier |
None. |
TopicTagKeys |
List of unique keys of Topic tags to apply to Post. Topic tag keys only apply when posting to a topic community and are omitted when posting to a non-topic community. If required, the keys must be valid topic tag keys of the community that you are posting to, and can be found in the Community model for the community that you are posting to. |
Collection of globally unique identifier |
None. |
Subject |
Subject of the Discussion Post. |
string |
Required Max length: 255 |
Body |
Body of the Discussion Post. |
string |
Required |
Request Formats
application/json, text/json
{ "DiscussionKey": "b7f8ee18-baa3-450c-aad2-ddb9bbb93865", "CommunityKey": "6a343ad8-b0cc-4be8-a005-2bdbe54d784f", "DocumentKey": "da02d5d7-0b88-40e6-b624-b22fce0959c1", "TopicTagKeys": [ "ef14b0fa-a1d4-4892-8d65-991a047d2a0d", "5be70233-d199-4b4e-8671-11095391c155" ], "Subject": "sample string 1", "Body": "sample string 2" }
application/xml, text/xml
<PostDiscussionMessageRequest 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> <CommunityKey>6a343ad8-b0cc-4be8-a005-2bdbe54d784f</CommunityKey> <DiscussionKey>b7f8ee18-baa3-450c-aad2-ddb9bbb93865</DiscussionKey> <DocumentKey>da02d5d7-0b88-40e6-b624-b22fce0959c1</DocumentKey> <Subject>sample string 1</Subject> <TopicTagKeys xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>ef14b0fa-a1d4-4892-8d65-991a047d2a0d</d2p1:guid> <d2p1:guid>5be70233-d199-4b4e-8671-11095391c155</d2p1:guid> </TopicTagKeys> </PostDiscussionMessageRequest>
Response Information
Resource Description
Collection of booleanResponse Formats
application/json, text/json
[ true, true ]
application/xml, text/xml
<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>