GET networks/{id}/sports/search?q={q}&active={active}
Get All School Sports by searching partial name with status active(true/false)
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | net work id |
Define this parameter in the request URI. |
q | partial name of a sprot |
Define this parameter in the request URI. |
active | true/false |
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" } }, { "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" } }, { "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" } } ]
application/xml, text/xml
Sample:
<ArrayOfSportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO"> <SportDto> <description>sample string 3</description> <enable_club>true</enable_club> <id>sample string 1</id> <logo>sample string 4</logo> <name>sample string 2</name> <network> <id>sample string 1</id> <name>sample string 2</name> </network> <sport_type>5</sport_type> </SportDto> <SportDto> <description>sample string 3</description> <enable_club>true</enable_club> <id>sample string 1</id> <logo>sample string 4</logo> <name>sample string 2</name> <network> <id>sample string 1</id> <name>sample string 2</name> </network> <sport_type>5</sport_type> </SportDto> <SportDto> <description>sample string 3</description> <enable_club>true</enable_club> <id>sample string 1</id> <logo>sample string 4</logo> <name>sample string 2</name> <network> <id>sample string 1</id> <name>sample string 2</name> </network> <sport_type>5</sport_type> </SportDto> </ArrayOfSportDto>