POST api/v2.0/Discussions/PostToDiscussionWithCrossPost
Request Information
URI Parameters
None.
Body Parameters
NewDiscussionPostWithCrossPostRequest| Name | Description | Type | Additional 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": "857184e3-33c4-4da0-93b9-0b8b0e893e4c",
"CrossPostKey": "dbe1492a-f7e9-4ece-8270-52c718102aee"
}
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>dbe1492a-f7e9-4ece-8270-52c718102aee</CrossPostKey> <DiscussionKey>857184e3-33c4-4da0-93b9-0b8b0e893e4c</DiscussionKey> <Subject>sample string 1</Subject> </NewDiscussionPostWithCrossPostRequest>
Response Information
Resource Description
None.