Howdy!
I found an issue in the documentation of the [Halo 5 - Leaderboard - Player CSR}(https://developer.haloapi.com/docs/services/58acdf27e2f7f71ad0dad84b/operations/58acdf28e2f7f70db4854b35?) for the player object in the Results list.
The documentation says that the response contract should be
> {
> …
> Results: [{
> PlayerId: {
> GamerTag: string,
> Xuid: null
> }
> }]
> …
> }
but the actual response is
> {
> …
> Results: [{
> Player: {
> Gamertag: string,
> Xuid: null
> }
> }]
> …
> }
Params used for testing the in the console:
seasonId: 9b7f60ae-cb34-471b-ba7e-1a748dccc8fe’; // Spring 2018
playlistId: 5c9808b0-03a3-4577-b966-7217f9dda52d’ // HaloWC 2018
Small typos but thought I’d reach out in the event anyone else stumbled across this.
Thanks for the sweet APIs 343!