POST api/v1.0/Discussions/PostToDiscussionWithCrossPost

Request Information

URI Parameters

None.

Body Parameters

NewDiscussionPostWithCrossPostRequest
NameDescriptionTypeAdditional information
Subject

string

Required

Max length: 255

Body

string

Required

DiscussionKey

globally unique identifier

Required

CrossPostKey

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "Subject": "sample string 1",
  "Body": "sample string 2",
  "DiscussionKey": "a7f5994c-4a8e-4f14-b5f3-896c565d61ca",
  "CrossPostKey": "22cf1826-a2c6-41f3-be60-d95eb0e78e4f"
}

application/xml, text/xml

Sample:
<NewDiscussionPostWithCrossPostRequest 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>
  <CrossPostKey>22cf1826-a2c6-41f3-be60-d95eb0e78e4f</CrossPostKey>
  <DiscussionKey>a7f5994c-4a8e-4f14-b5f3-896c565d61ca</DiscussionKey>
  <Subject>sample string 1</Subject>
</NewDiscussionPostWithCrossPostRequest>

Response Information

Resource Description

None.