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": "eed79240-e080-479a-a6c2-506c1da6e7ec",
"CrossPostKey": "b13aaf45-312f-4de0-924e-03de5eec4c82"
}
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>b13aaf45-312f-4de0-924e-03de5eec4c82</CrossPostKey> <DiscussionKey>eed79240-e080-479a-a6c2-506c1da6e7ec</DiscussionKey> <Subject>sample string 1</Subject> </NewDiscussionPostWithCrossPostRequest>
Response Information
Resource Description
None.