POST api/v2.0/Ideation/AddIdeaCategories
Add categories to an idea.
Request Information
URI Parameters
None.
Body Parameters
SetIdeaCategoriesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| IdeationKey |
Key of the idea. |
globally unique identifier |
Required |
| IdeationCategoryKeys |
Category keys to add to the idea. |
Collection of globally unique identifier |
Required |
Request Formats
application/json, text/json
{
"IdeationKey": "fadac254-d271-449c-b91d-2ea78b21da0d",
"IdeationCategoryKeys": [
"18abb41c-e3e3-4303-9ed8-5adabdf9a0d4",
"68ad6bc8-aacf-4749-8d53-3a2d0fd2bd0f"
]
}
application/xml, text/xml
<SetIdeaCategoriesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Ideation">
<IdeationCategoryKeys xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>18abb41c-e3e3-4303-9ed8-5adabdf9a0d4</d2p1:guid>
<d2p1:guid>68ad6bc8-aacf-4749-8d53-3a2d0fd2bd0f</d2p1:guid>
</IdeationCategoryKeys>
<IdeationKey>fadac254-d271-449c-b91d-2ea78b21da0d</IdeationKey>
</SetIdeaCategoriesRequest>
Response Information
Resource Description
Idea updated
IdeaDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| IdeationKey |
Unique identifier of the idea. |
globally unique identifier |
None. |
| Title |
Title of the idea. |
string |
None. |
| Description |
Description of the idea. |
string |
None. |
| LinkToViewIdea |
Direct link to view the idea on the main microsite. |
string |
None. |
| Status |
Object containing information about the status of the idea. |
IdeaStatus |
None. |
| Community |
The community the idea has been associated to. If null or doesn't exist (i.e. the idea is not associated to any community), the idea is considered to be a site-wide idea. |
Community |
None. |
| Categories |
All categories the idea has been associated to. |
Collection of IdeaCategory |
None. |
| TotalUpvotes |
Number of upvotes. |
integer |
None. |
| TotalDownvotes |
Number of downvotes. |
integer |
None. |
| HasOfficialComment |
True if this idea has an official comment from an admin. |
boolean |
None. |
| Author |
Information about the author of the idea. |
ContactConcise |
None. |
| IsAnonymous |
True if the idea was submitted anonymously. |
boolean |
None. |
| CreatedOn |
DateTime the idea was created. |
date |
None. |
| UpdatedOn |
Most recent DateTime the idea was updated. |
date |
None. |
| AttachmentURLs |
Temporary URLs to view or download any attachments associated with the idea. |
Collection of IdeaAttachment |
None. |
Response Formats
application/json, text/json
{
"IdeationKey": "a933f605-727a-4dbb-a834-2e2baf96e7a9",
"Title": "sample string 2",
"Description": "sample string 3",
"LinkToViewIdea": "sample string 4",
"Status": null,
"Community": null,
"Categories": null,
"TotalUpvotes": 5,
"TotalDownvotes": 6,
"HasOfficialComment": true,
"Author": {
"LinkToProfile": "sample string 1",
"PictureUrl": "sample string 2",
"ContactKey": "82c9880e-9ef3-4b4c-a5f0-2d977767c6e2",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"DisplayName": "sample string 6",
"EmailAddress": "sample string 7",
"ContactStatusCode": "sample string 8",
"PrefixCode": "sample string 9",
"UpdatedOn": "2025-11-06T13:18:52.2313707Z",
"UpdatedByContactKey": "48e38514-2a42-46a7-8576-3898f3d7b241",
"CompanyName": "sample string 12",
"CompanyTitle": "sample string 13",
"SuffixCode": "sample string 14",
"Designation": "sample string 15",
"LegacyContactKey": "sample string 16",
"InformalName": "sample string 17",
"MiddleName": "sample string 18",
"IsCompany": true,
"CompanyLegacyContactKey": "sample string 20",
"AMSDirectoryOptOut": true,
"HLDirectoryOptOut": true,
"HLContactMeOptOut": true,
"LargePictureUrl": "sample string 24",
"AgreedToTermsDateTime": "2025-11-06T13:18:52.2313707Z"
},
"IsAnonymous": true,
"CreatedOn": "2025-11-06T13:18:52.2313707Z",
"UpdatedOn": "2025-11-06T13:18:52.2313707Z",
"AttachmentURLs": null
}
application/xml
Sample not available.
text/xml
Sample not available.