Forum Discussion

luk's avatar
luk
Boss
10 years ago

Getting threads a user participated in via REST API?

I'm trying to bild a custom topic/thread list of threads/topics a user has participated in, similar to the one found on the view profile page of a users own profile (which is the component forums.wid...
  • mahesh_revanwar's avatar
    9 years ago

    Hi luk,

     

    If you want to get the recent posts of the user you can use this call

    /restapi/vc/users/id/<id>/posts

    Alternative, you can also use V2 call.

    SELECT * FROM messages WHERE depth=0 AND author.id='<id>' ORDER BY conversation.last_post_time DESC

     

    Regards,

    Mahesh

    If my post is helpful and answers your question, please give "Kudos" and "Accept it as a Solution."