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": "550b4e4d-6e20-49fb-88bb-d029a70f324f",
  "CrossPostKey": "baa82fd6-26ff-419e-88af-c4cb0a9287ed"
}

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>baa82fd6-26ff-419e-88af-c4cb0a9287ed</CrossPostKey>
  <DiscussionKey>550b4e4d-6e20-49fb-88bb-d029a70f324f</DiscussionKey>
  <Subject>sample string 1</Subject>
</NewDiscussionPostWithCrossPostRequest>

Response Information

Resource Description

None.