How do I run a report showing how many likes a member has received?

We are trying to figure out how to run a report that shows how many likes a member has received. We are giving members achievement points for this so we figure there has to be a way to run a report with this information. 

Similarly, we would like to run a report that shows how many times a member's answer has been marked as a "verified answer".

any info would be appreciated!

Parents
  • Former Member
    +1 Former Member

    These two reports aren't quite what you're looking for but are the closest Reporting offers.

    • The Members > Participation report shows Contributions/Engagements/Views grouped by individual users.
    • The Content > Interactions report shows activity on the site grouped by the type of action, such as liking content or verifying answers.

    Whether you are looking for a quick view of a certain member's numbers (likes/ answers verified), or a regularly scheduled export of the top users in each category, your best bet will be to use the API to list and aggregate this data. For instance, you can List Forum Replies filtering by AuthorId and specifying ForumReplyQueryType of verified-answers. This will give you TotalCount. Likes would be a bit trickier, but since you have the Point Transactions active, you could List those filtered by UserId and TypeId, and get TotalCount from that.

Reply
  • Former Member
    +1 Former Member

    These two reports aren't quite what you're looking for but are the closest Reporting offers.

    • The Members > Participation report shows Contributions/Engagements/Views grouped by individual users.
    • The Content > Interactions report shows activity on the site grouped by the type of action, such as liking content or verifying answers.

    Whether you are looking for a quick view of a certain member's numbers (likes/ answers verified), or a regularly scheduled export of the top users in each category, your best bet will be to use the API to list and aggregate this data. For instance, you can List Forum Replies filtering by AuthorId and specifying ForumReplyQueryType of verified-answers. This will give you TotalCount. Likes would be a bit trickier, but since you have the Point Transactions active, you could List those filtered by UserId and TypeId, and get TotalCount from that.

Children