Is there a way that we can find the average response time for forum threads via the API?

Can we find the average response time for forum threads via the API? We’re doing some research to see if we could build a datasheet to tie activity, number of posts, and time to respond for specific product numbers into one dashboard.

Parents
  • Former Member
    0 Former Member

    Yes, this can be done via the API. Before delving into that route though, be sure to check if the Reporting section has what you're looking for. Forums Summary has an overview of the activity per forum, and you can drill in to see Average Response Times and other metrics.

    If you do decide to roll your own report, this might work best as a scheduled job that calculates these values. I don't know how your products are delineated, but if for example they each had their own forum, you could:

    • For each product forum, sequentially list forum threads
    • For each thread, sequentially list replies - could filter by verified or non-verified (suggested) answers
    • Calculate difference between thread create date and reply date of verified reply (or whatever type you are measuring)
    • Grab whatever other metrics you'd like along the way, for example total threads, avg number of replies per thread, etc
Reply
  • Former Member
    0 Former Member

    Yes, this can be done via the API. Before delving into that route though, be sure to check if the Reporting section has what you're looking for. Forums Summary has an overview of the activity per forum, and you can drill in to see Average Response Times and other metrics.

    If you do decide to roll your own report, this might work best as a scheduled job that calculates these values. I don't know how your products are delineated, but if for example they each had their own forum, you could:

    • For each product forum, sequentially list forum threads
    • For each thread, sequentially list replies - could filter by verified or non-verified (suggested) answers
    • Calculate difference between thread create date and reply date of verified reply (or whatever type you are measuring)
    • Grab whatever other metrics you'd like along the way, for example total threads, avg number of replies per thread, etc
Children