ContributionsMost RecentMost LikesSolutionsRe: Aurora: Enable languages in your community What is the full-list of languages that Khoros Aurora will be supporting? For example: FR-CA Re: Is there way to create new status for ideas via API? Thanks Payal didn't really work. Request: https://<MY URL>/restapi/vc/boards/id/<My Board ID>/message_statuses/add?message_status=key/pending_closure Response: <response status="error"> <error code="501"> <message> Unknown path element at node 'board_message_status_context'. </message> </error> </response> Re: Is there way to create new status for ideas via API? Thanks for your help AdamN , can you tell me where I am going wrong? here's my example request based on your suggestion https:<My URL>/vc/boards/id/<Board ID>/message_statuses/add?message_status.key=pending_closure&message_status.name=Pending Closure&message_status.description=<Some random description>&message_status.type=idea Note that I am following https://devdocportal.khoros.com/t5/Community-API-v1-Reference/bd-p/restv1docs?section=commv1&leaf-id=Board.message_statuses#Board.message_statuses.available.add and I am adding the Board ID to the param as well But I am getting the following error: <response status="error"> <error code="501"> <message> Unknown path element at node 'board_message_status_context'. </message> </error> </response> I don't even know what a board_message_status_context is 😁 Re: Is there way to create new status for ideas via API? I think that's where I am faltering as well. The variable the document above accepts is called MessageStatus but I have no idea how to add that in the query parameter Is there way to create new status for ideas via API? Hi, I am trying to update the idea statuses of the Idea Boards for my community via API REST Call. There are about 11 idea exchange boards, and 7 custom idea statuses per board, so it is pretty tedious to update the idea statuses per board manually through the UI. Is there a way to perform this operation via API instead? I found this: https://devdocportal.khoros.com/t5/Community-API-v1-Reference/bd-p/restv1docs?section=commv1&leaf-id=Board.message_statuses#Board.message_statuses.available.add But, I can't get this to work with the query params either. Any help is appreciated /Akash Re: How to set predefined-only while creating GroupHub Thanks AndrewF this is a good workaround. I will use this and mark my Q as resolved. Re: How to set predefined-only while creating GroupHub hey AndrewF , from what I can tell, this setting is not allowed for `Group Hubs` creation. It's allowed when I create a Forum (or any other board for that matter), but not Group Hub specifically How to set predefined-only while creating GroupHub So, I am in an interesting scenario: I want to create a Group Hub --> Easy enough to create using the REST API Endpoints I want to have Forum + Calendar + TKB created within the Group Hub --> Same as above I want to make sure that the Boards under the Group Hub have `predefined-only` labels when creating topics on the boards. --> This seems not possible What I tried doing was I tried using the Update Board API to enforce `allowed_labels` to `predefined-only` only to see that the API does not allow this change on Update. So, my question is how do I set `predefined-only` for the boards under GroupHubs? Solved