GET v3/me/teams/{id}/playerstats
Team player-stats grid (per-player season/per-game stats) for the participant team page — parity with the legacy SPA LoadPlayerStats, but returns a data-driven dynamic-column VO instead of WebForms HTML. Member/guest-viewable (BO gates on Team.IsPublicViewable).
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | team id |
Define this parameter in the request URI. |
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"teamId": "sample string 1",
"useJerseyNumbers": true,
"extendedVisibility": true,
"columns": [
{
"key": "sample string 1",
"label": "sample string 2",
"isTotal": true
},
{
"key": "sample string 1",
"label": "sample string 2",
"isTotal": true
},
{
"key": "sample string 1",
"label": "sample string 2",
"isTotal": true
}
],
"rows": [
{
"memberId": "sample string 1",
"jersey": "sample string 2",
"player": "sample string 3",
"cells": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4",
"sample string 5": "sample string 6"
}
},
{
"memberId": "sample string 1",
"jersey": "sample string 2",
"player": "sample string 3",
"cells": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4",
"sample string 5": "sample string 6"
}
},
{
"memberId": "sample string 1",
"jersey": "sample string 2",
"player": "sample string 3",
"cells": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4",
"sample string 5": "sample string 6"
}
}
]
}
application/xml, text/xml
Sample:
<TeamPlayerStatsOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Team">
<Columns>
<PlayerStatsColumnOutVO>
<IsTotal>true</IsTotal>
<Key>sample string 1</Key>
<Label>sample string 2</Label>
</PlayerStatsColumnOutVO>
<PlayerStatsColumnOutVO>
<IsTotal>true</IsTotal>
<Key>sample string 1</Key>
<Label>sample string 2</Label>
</PlayerStatsColumnOutVO>
<PlayerStatsColumnOutVO>
<IsTotal>true</IsTotal>
<Key>sample string 1</Key>
<Label>sample string 2</Label>
</PlayerStatsColumnOutVO>
</Columns>
<ExtendedVisibility>true</ExtendedVisibility>
<Rows>
<PlayerStatsRowOutVO>
<Cells xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 1</d4p1:Key>
<d4p1:Value>sample string 2</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 3</d4p1:Key>
<d4p1:Value>sample string 4</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 5</d4p1:Key>
<d4p1:Value>sample string 6</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Cells>
<Jersey>sample string 2</Jersey>
<MemberId>sample string 1</MemberId>
<Player>sample string 3</Player>
</PlayerStatsRowOutVO>
<PlayerStatsRowOutVO>
<Cells xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 1</d4p1:Key>
<d4p1:Value>sample string 2</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 3</d4p1:Key>
<d4p1:Value>sample string 4</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 5</d4p1:Key>
<d4p1:Value>sample string 6</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Cells>
<Jersey>sample string 2</Jersey>
<MemberId>sample string 1</MemberId>
<Player>sample string 3</Player>
</PlayerStatsRowOutVO>
<PlayerStatsRowOutVO>
<Cells xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 1</d4p1:Key>
<d4p1:Value>sample string 2</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 3</d4p1:Key>
<d4p1:Value>sample string 4</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>sample string 5</d4p1:Key>
<d4p1:Value>sample string 6</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Cells>
<Jersey>sample string 2</Jersey>
<MemberId>sample string 1</MemberId>
<Player>sample string 3</Player>
</PlayerStatsRowOutVO>
</Rows>
<TeamId>sample string 1</TeamId>
<UseJerseyNumbers>true</UseJerseyNumbers>
</TeamPlayerStatsOutVO>
multipart/form-data
Sample:
Sample not available.