Type of Match - Player Stats Summary

Hello there!

First post here and if anyone one could help, I would be very appreciated.

I’m creating a mobile app with Xamarin about Halo Wars 2 and would like to know if in the Player Stats Summary of this API is possible to know the type of match and other details. For instance:

  • If is Deathmatch, Domination or Strongholds.
  • If is 1vs1 or 2vs2 or 3vs3.

For what I see, we can use “PlaylistClassification” but it only indicates if its General, Blitz or Firefight…

Thanks for your attention!

Hey! You can use the “PlaylistId” field to find more details about the playlist. The details can be found in the Playlist Metadata endpoint of the API, and you’ll have to remove the dashes in the ID to find them.

i.e. from ‘/stats/hw2/players/Forza Win/stats’ you’ll get a “PlaylistId” of “282fc197-7bf1-4865-81ec-a312d07567b6”, and from ‘/metadata/hw2/playlists’ you can find a playlist with the “Identity” of “282fc1977bf1486581eca312d07567b6”.

Hope that helps!

Hey Forza!

Thanks for the information! That really helped :slight_smile: