originally posted in:BungieNetPlatform
View Entire Topic
I might have missed it, but I'm sure it's somewhere in the API. What is the endpoint to get the medals you got in PvP and what number of them you got? Also, is there a way to get their definitions easily too? I know websites that do it, but I can't find how. Thanks!
English
-
If you go to the [i]/Stats/PostGameCarnageReport/{activityId}/[/i] endpoint, you can find it there. It's buried in the response object. If you go to [i]Response[data][entires][0][extended][values][/i] there is a large list of values, some of which are titled: - medalsKillMulti3 - medalsKillSpree1 - medalsActivityCompleteVictory - medalsActivityCompleteHighestScoreWinning The 0 there just gives the info for the first player. I'm assuming that all medals will have "medals" in their string. You can then see how many times the player received those medals by doing: [i]Response[data][entires][0][extended][values][MEDAL_TITLE][basic][value][/i] Hope this helps!