luk
10 years agoBoss
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...
- 10 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."