Current Match

Is there any way to get the players in a current match?

Am I over looking something? Am I dumb? Does this not exist?

Any help would be appreciated!

Thanks! :slight_smile:

If you’re looking at Matches for Player, you will only see the player who’s matches you are viewing.
If you use Post-Game Carnage Report: Arena/Campaign/Custom/Warzone you can retrieve the gamertags of the players through

> PlayerStats[index].Player.Gamertag

https://developer.haloapi.com/docs/services/560af163e2f7f710cc79e517/operations/5612e539e2f7f7334c177fb3

> 2535434981033996;1:
> Is there any way to get the players in a current match?
>
> Am I over looking something? Am I dumb? Does this not exist?
>
> Any help would be appreciated!
>
> Thanks! :slight_smile:

To add to Mattster092’s answer.

You can’t query a current match i.e. a match that hasn’t finished yet (you have to wait for the match to finish and undergo processing @ 343).

> 2753093343646559;3:
> > 2535434981033996;1:
> > Is there any way to get the players in a current match?
> >
> > Am I over looking something? Am I dumb? Does this not exist?
> >
> > Any help would be appreciated!
> >
> > Thanks! :slight_smile:
>
>
> To add to Mattster092’s answer.
>
> You can’t query a current match i.e. a match that hasn’t finished yet (you have to wait for the match to finish and undergo processing @ 343).

That really kind of sucks.

I was really hoping there would be a way to just get a list of players in the current match. Wasn’t worried about the details :frowning:

Thanks for the reply!