Get Player Uuid Rank V2
GET/rank/v2/player/:player_uuid/rank/:rank_id
Get a specific player's rank for a specific rank id
Required Permissions: rank:read:self for players acting on themselves,
otherwise rank:read:any
Request
Path Parameters
player_uuid uuidrequired
rank_id Rank Idrequired
Possible values: non-empty
Responses
- 200
- 403
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
player_ranks
object[]
required
List of player's ranks
player_uuid uuidrequired
UUID for this specific player
rank
object
required
Ranked data about a player's skill and confidence levels
mu Mu (number)required
A measure of perceived skill in a player
sigma Sigma (number)required
A measure of how confident we are in the perceived skill (high sigma means low confidence)
custom_data
object
Custom key-value player rank data
property name* string
rank_id Rank Id (string)required
Possible values: non-empty
ID for this rank
{
"player_ranks": [
{
"player_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"rank": {
"mu": 0,
"sigma": 0,
"custom_data": {}
},
"rank_id": "string"
}
]
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
auth_success Auth Success (boolean)
Default value: true
error_code Error Code (string)required
desc Desc (string)required
{
"auth_success": true,
"error_code": "string",
"desc": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...