Forum Discussion
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
akashm It is expecting the id or the key of the status, as defined when you created the status. Then you pass it in the request like:
.../message_statuses/available/add?message.status=key/accepted
or
.../message_statuses/available/add?message.status=id/654
(Note, you'll want to URL-encode your query param values. I'm leaving them unencoded here for readability)
If you need to create new statuses, you can use:
I hope this helps!
- StanGromer3 years agoBoss
AdamN Since we’re on the topic - Do you know if we can see the featured idea statuses via API somehow? We’re getting ready to launch our IE, and our engineer couldn’t figure that out (We made a new status component but had to hardcode which ones showed up).
edit: Ignore me, I should have read all the link you sent first 😂. I think it’s on there!!
edit 2: Actually question stands as I think this only covers creating a new idea, can we query it the same way to see if it’s featured?
- AdamN3 years agoKhoros Oracle
Hi StanGromer , I'm not seeing a separate call for editing/updating in our docs. However, from a cursory look at the logic behind the scenes, it appears that if you specify an existing key via the /add method, it will attempt to update the corresponding status. This seems to be implied by the documentation as well since it mentions for the "returns" details:
MessageStatus: either the pre-existing message status with the provided key and type (if provided), or the newly created status.
But you may want to try it in stage first, just to make sure it works as expected.
I hope this helps!
- akashm3 years agoMentor
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 😁