Public
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Expert

Idea Exchange Dashbaord

Is there a component that could essentially display all of a user's ideas submitted to the Idea exchange? I imagine this being either in their profile 'Ideas I have submitted' or a filter option on the Idea Exchange page itself "Sort by My Ideas'. 

Any info is appreciated!

10 Replies 10

Unfortunately there is not - We are actually planning on developing this ourselves in the near future as we prepare to launch our own IE - Once we get further along will see what we can share to maybe help you/others along with it (Lithium wanted over $15k to develop it!!).  

FYI if you didn't know - You can use the search csv export function (Has to be enabled by Lithium) to report on all of your ideas which you won't find in reporting either.  See this thread for how: https://community.lithium.com/t5/Search-tools/Export-community-search-results-to-a-CSV-file/ta-p/376...

 

 

We need this too. Our customers are finding it hard to find the status of all their ideas in one place. 

@mvanpelt

You can get all ideas post by users in community using below API.

SELECT * FROM messages WHERE conversation.style='idea' AND author.id='2'

This API will return all the ideas posted by the user.

.......
Expecting your Kudos and Accepted Solution to my replies.

Hey Parshant, 

If we want to include pagination in the my ideas section as you mentioned in the previous comment, what is the code(API) for the pagination? Thanks!

Hey @Parshant,

Thanks for sharing the API code, it works but it shows all the ideas along with their comments, I want to display only the ideas not the comments in the ideas.

Code 

SELECT id, href, view_href, author.view_href, author.id, author.login, subject, body, status.key, status.name, kudos, tags, post_time_friendly, post_time, parent, conversation.messages_count FROM messages WHERE conversation.style='idea' AND board.id = 'AnaplanIdeas' AND author.id='74' ORDER BY post_time DESC LIMIT 4 OFFSET 4

Please help, Thanks!

Khoros Alumni (Retired)

Adding "depth=0" to the WHERE clause will filter the results to topic messages only.

Former Developer Experience Program Manager for Khoros. Please post in the Developer Discussion Forum if you have questions about the Khoros APIs.

Thank you!

Hi @karthikeyan,

As mentioned by @SuzieH, you can use the depth=0.

This will give you the main topics of messages.

SELECT id, href, view_href, author.view_href, author.id, author.login, subject, body, status.key, status.name, kudos, tags, post_time_friendly, post_time, parent, conversation.messages_count FROM messages WHERE conversation.style='idea' AND board.id = 'AnaplanIdeas' AND author.id='74' AND depth=0 ORDER BY post_time DESC LIMIT 4 OFFSET 4
.......
Expecting your Kudos and Accepted Solution to my replies.

It works, Thanks @SuzieH and @Parshant 🙂

Welcome to the Technology board!

Curious about our platform? Looking to connect on social technology? You've come to the right place!

Are you a Khoros customer? For direct assistance from our Support team, please visit the Support Forum.