POST api/v2.0/Discussions/SubmitDiscussionPost

Submit a new DiscussionPost to a Discussion.

Request Information

URI Parameters

None.

Body Parameters

Set of properties describing the Discussion to Post to, the Subject, and the Body of the DiscussionPost.

PostDiscussionMessageRequest
NameDescriptionTypeAdditional 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

Sample:
{
  "DiscussionKey": "b9df1df8-4336-497d-a4d0-6f44547a103e",
  "CommunityKey": "dfd61a04-db0d-4ed7-9896-5e931f8c0c50",
  "DocumentKey": "6dfd6b9c-65bb-4f1f-b247-1b018495c172",
  "TopicTagKeys": [
    "9221b04b-aba3-4928-8469-f14adf07223b",
    "b9693c6c-598b-4d06-9a6d-ab11211d04fb"
  ],
  "Subject": "sample string 1",
  "Body": "sample string 2"
}

application/xml, text/xml

Sample:
<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>dfd61a04-db0d-4ed7-9896-5e931f8c0c50</CommunityKey>
  <DiscussionKey>b9df1df8-4336-497d-a4d0-6f44547a103e</DiscussionKey>
  <DocumentKey>6dfd6b9c-65bb-4f1f-b247-1b018495c172</DocumentKey>
  <Subject>sample string 1</Subject>
  <TopicTagKeys xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>9221b04b-aba3-4928-8469-f14adf07223b</d2p1:guid>
    <d2p1:guid>b9693c6c-598b-4d06-9a6d-ab11211d04fb</d2p1:guid>
  </TopicTagKeys>
</PostDiscussionMessageRequest>

Response Information

Resource Description

True if successful, False if not.

Collection of boolean

Response 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>