GET api/V2/eval/playerrank/{companyId}

Get number of practices sorted by player score

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

NumberOfPractices
NameDescriptionTypeAdditional information
P03PlayersCount

integer

None.

P03PlayersPracticeCount

decimal number

None.

P35PlayersCount

integer

None.

P35PlayersPracticeCount

decimal number

None.

P57PlayersCount

integer

None.

P57PlayersPracticeCount

decimal number

None.

P710PlayersCount

integer

None.

P710PlayersPracticeCount

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "p03PlayersCount": 1,
  "p03PlayersPracticeCount": 2.1,
  "p35PlayersCount": 3,
  "p35PlayersPracticeCount": 4.1,
  "p57PlayersCount": 5,
  "p57PlayersPracticeCount": 6.1,
  "p710PlayersCount": 7,
  "p710PlayersPracticeCount": 8.1
}

application/xml, text/xml

Sample:
<NumberOfPractices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/oiback.Controllers.V2">
  <P03PlayersCount>1</P03PlayersCount>
  <P03PlayersPracticeCount>2.1</P03PlayersPracticeCount>
  <P35PlayersCount>3</P35PlayersCount>
  <P35PlayersPracticeCount>4.1</P35PlayersPracticeCount>
  <P57PlayersCount>5</P57PlayersCount>
  <P57PlayersPracticeCount>6.1</P57PlayersPracticeCount>
  <P710PlayersCount>7</P710PlayersCount>
  <P710PlayersPracticeCount>8.1</P710PlayersPracticeCount>
</NumberOfPractices>