API Calls - Thread Activity

Hi All,

I am digging into API calls, something new for me and was hoping the community could help. I am specifically wondering about API calls for forum threads. We have three scenarios we wish to pull into our website related to threads.

  1. A user has posted a new question or discussion anywhere in the community
  2. A user has created a reply to an existing thread anywhere in the comunity
  3. A user has followed a thread

For #1 It appears I can use one call to pull in both questions and discussions. Is this call correct?

POST api.ashx/v2/forums/{forumid}/threads.xml (or .json)

https://community.telligent.com/community/10/w/api-documentation/61544/create-forum-thread-rest-endpoint

For #2 I am thinking that this call will pull in replies.  Is this correct? 

POST api.ashx/v2/forums/{forumid}/threads/{threadid}/replies.xml (or .json)

Scenario #3 - I am not sure how to capture threads that are followed by an individual. Any advice here?

Thank you for your help!