How to: Community API request per user, per day metrics (such as kudos given) Seems basic, but I'm only finding bits and pieces of the answer: I can query list of all users, then iterate through User ID's with a `Users.query_users_table_by_id` specifying counts like "'login, messages.count(*), following.count(*), followers.count(*), solutions_authored.count(*), kudos_given.sum(weight)'" I can find user total-all-time counts But ideally i could use the API to pull something like offered in the Admin UI Metrics | Advanced Metrics | scope=user and metrics="user/role statistics". This simply gives me all stats for all users constrained by date range. How can I pull this from the API?
... View more