Hello. I have one custom leaderboard. And I put there points in various scopes. And I want get list of scores in each scope separately. Is it possible to get such data with any existing API by Player_Id only?
Btw "GET/admin/players/:player_id" returned empty score for existing player. But "GET/runtime/leaderboards/:leaderboard_id" with scope_id specified works well, so I able to see scores of each players in specific scope.
So now I can see only one way to solve my problem:
Pick Player_id, array with all possible scopes for that Player, Leaderboard_id. And use "GET/runtime/leaderboards/:leaderboard_id" for each scope, then gather score for each scope only for interesting player. As I have many scopes, such operation seems bulky.