GET moko/networks/{id}/sports?active={active}
Get all sports in the network specified by id with status active(true/false) also contains league/division/team count
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | network id |
Define this parameter in the request URI. |
| active | active |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"id": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"logo": "sample string 4",
"sport_type": 5,
"enable_club": true,
"network": {
"id": "sample string 1",
"name": "sample string 2"
},
"league_count": 7,
"division_count": 8,
"team_count": 9
},
{
"id": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"logo": "sample string 4",
"sport_type": 5,
"enable_club": true,
"network": {
"id": "sample string 1",
"name": "sample string 2"
},
"league_count": 7,
"division_count": 8,
"team_count": 9
},
{
"id": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"logo": "sample string 4",
"sport_type": 5,
"enable_club": true,
"network": {
"id": "sample string 1",
"name": "sample string 2"
},
"league_count": 7,
"division_count": 8,
"team_count": 9
}
]
application/xml, text/xml
Sample:
<ArrayOfMokoSportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO.Moko">
<MokoSportDto>
<description>sample string 3</description>
<division_count>8</division_count>
<enable_club>true</enable_club>
<id>sample string 1</id>
<league_count>7</league_count>
<logo>sample string 4</logo>
<name>sample string 2</name>
<network xmlns:d3p1="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
<d3p1:id>sample string 1</d3p1:id>
<d3p1:name>sample string 2</d3p1:name>
</network>
<sport_type>5</sport_type>
<team_count>9</team_count>
</MokoSportDto>
<MokoSportDto>
<description>sample string 3</description>
<division_count>8</division_count>
<enable_club>true</enable_club>
<id>sample string 1</id>
<league_count>7</league_count>
<logo>sample string 4</logo>
<name>sample string 2</name>
<network xmlns:d3p1="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
<d3p1:id>sample string 1</d3p1:id>
<d3p1:name>sample string 2</d3p1:name>
</network>
<sport_type>5</sport_type>
<team_count>9</team_count>
</MokoSportDto>
<MokoSportDto>
<description>sample string 3</description>
<division_count>8</division_count>
<enable_club>true</enable_club>
<id>sample string 1</id>
<league_count>7</league_count>
<logo>sample string 4</logo>
<name>sample string 2</name>
<network xmlns:d3p1="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
<d3p1:id>sample string 1</d3p1:id>
<d3p1:name>sample string 2</d3p1:name>
</network>
<sport_type>5</sport_type>
<team_count>9</team_count>
</MokoSportDto>
</ArrayOfMokoSportDto>