I'm trying to get a hang of API so that we can use it to display all posts for every day. https://community.website.com/api/2.0/search?q=select%20*%20from%20messages%20where%20post_time%20>%20{$startDate}T{$startTime}.000-00:00%20and%20post_time%20<%20{$endDate}T{$endTime}.999-00:00%20limit%201000 I was using something similar. However, my major issue is to display the entire thread, including the posts that are there. Should be something like this, but it's just showing me the opening post, not the others. I tried a lot of combinations in the past hour or so. select * from messages where topic.id = '$number' How to use API and show the data of an entire thread?
... View more