GET api/Team/GetTeamListBySportsType?sportsTypeId={sportsTypeId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
sportsTypeId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TeamDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
TeamName | string |
None. |
|
TeamNameFr | string |
None. |
|
TeamStats | string |
None. |
|
TeamLogo | string |
None. |
|
LeagueImage | string |
None. |
|
ChampionshipName | string |
None. |
|
SportsType | string |
None. |
|
SportsTypeId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "df6a1bb2-2240-4c9d-9ba6-7a2ae220fa54", "TeamName": "sample string 2", "TeamNameFr": "sample string 3", "TeamStats": "sample string 4", "TeamLogo": "sample string 5", "LeagueImage": "sample string 6", "ChampionshipName": "sample string 7", "SportsType": "sample string 8", "SportsTypeId": "724f9847-f7d1-4ed3-b39d-ff4830ef7d63" }, { "Id": "df6a1bb2-2240-4c9d-9ba6-7a2ae220fa54", "TeamName": "sample string 2", "TeamNameFr": "sample string 3", "TeamStats": "sample string 4", "TeamLogo": "sample string 5", "LeagueImage": "sample string 6", "ChampionshipName": "sample string 7", "SportsType": "sample string 8", "SportsTypeId": "724f9847-f7d1-4ed3-b39d-ff4830ef7d63" } ]
application/xml, text/xml
Sample:
<ArrayOfTeamDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.TeamModule.Model"> <TeamDto> <ChampionshipName>sample string 7</ChampionshipName> <Id>df6a1bb2-2240-4c9d-9ba6-7a2ae220fa54</Id> <LeagueImage>sample string 6</LeagueImage> <SportsType>sample string 8</SportsType> <SportsTypeId>724f9847-f7d1-4ed3-b39d-ff4830ef7d63</SportsTypeId> <TeamLogo>sample string 5</TeamLogo> <TeamName>sample string 2</TeamName> <TeamNameFr>sample string 3</TeamNameFr> <TeamStats>sample string 4</TeamStats> </TeamDto> <TeamDto> <ChampionshipName>sample string 7</ChampionshipName> <Id>df6a1bb2-2240-4c9d-9ba6-7a2ae220fa54</Id> <LeagueImage>sample string 6</LeagueImage> <SportsType>sample string 8</SportsType> <SportsTypeId>724f9847-f7d1-4ed3-b39d-ff4830ef7d63</SportsTypeId> <TeamLogo>sample string 5</TeamLogo> <TeamName>sample string 2</TeamName> <TeamNameFr>sample string 3</TeamNameFr> <TeamStats>sample string 4</TeamStats> </TeamDto> </ArrayOfTeamDto>