GET sports/{id}

Return a specific sport data object by id

Request Information

Parameters

NameDescriptionAdditional information
id
sport id

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"
  }
}

application/xml, text/xml

Sample:
<SportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO">
  <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>