The designationId and tierId of a player

I want to get the icon url of a player’s csr designation.
I found that GET CSR Designations api cotains icons. But i can’t find where to get the designationId and tierId of a player.
How could i get the designationId and tierId of a player? Thanks in advance.

  • Metadata -> CSR DesignationsThe endpoint will contain CSR data (names images etc.).

  • Stats -> Service Record: ArenaThis endpoint will let you retrieve a players CSR (which includes the DesignationId, Rank, Tier etc.). You can use this to lookup the image from Metadata -> CSR Designations.

> Results[0].Result.ArenaStats.HighestCsrAttained
> Results[0].Result.ArenaStats.ArenaPlaylistStats[0].HighestCsr
> Results[0].Result.ArenaStats.ArenaPlaylistStats[0].Csr

  • Designations

> Bronze = 1
> Silver = 2
> Gold = 3
> Platinum = 4
> Diamond = 5
> Onyx = 6 (Semi-Pro)
> Champion = 7 (Pro)

Thanks a lot~