Forum Discussion

jaikumar1's avatar
jaikumar1
Mentor
8 years ago
Solved

How to get recent reply for specific threads

Hi,

I'm just looking into get the recent reply on the specific thread post. So could you please let me know on which API we can use it.

 

  • Parshant's avatar
    Parshant
    8 years ago

    jaikumar1,

    In this case here you can use below API V2 to achieve your requirement.

    select * from messages where topic.id='13' and depth > 0

     

4 Replies

  • jaikumar1's avatar
    jaikumar1
    Mentor
    8 years ago

    Hi Parshant,

    Thank you for your response. Actually i just looking into get the last reply form the each latest thread post. So to get a latest thread, i'm using the below API using GET method,

    http://community.lithium.com/community-name/restapi/vc/threads/recent

     

    The API  which your are suggested is using the POST method and unfortunately the above API call not working in my side. So is there any other API call can help with GET method to archive my requirement. 

  • Parshant's avatar
    Parshant
    Boss
    8 years ago

    jaikumar1,

    In this case here you can use below API V2 to achieve your requirement.

    select * from messages where topic.id='13' and depth > 0

     

  • jaikumar1's avatar
    jaikumar1
    Mentor
    8 years ago

    Thank you Parshant,

    I think it will work for me, and i have tried before the same API V2, and unfortunately that time i'm not succeed.