GET api/CompTeams?Team={Team}
Retrieves all the competitions for a given team
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Team | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CompTeamsCompsDTOName | Description | Type | Additional information |
---|---|---|---|
CompCode | string |
None. |
|
CompName | string |
None. |
|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "CompCode": "sample string 1", "CompName": "sample string 2", "StartDate": "2025-06-15T08:34:26.9066618+00:00", "EndDate": "2025-06-15T08:34:26.9066618+00:00", "Active": true }
application/xml, text/xml
Sample:
<CompTeamsCompsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FiresUniAPI.Models"> <Active>true</Active> <CompCode>sample string 1</CompCode> <CompName>sample string 2</CompName> <EndDate>2025-06-15T08:34:26.9066618+00:00</EndDate> <StartDate>2025-06-15T08:34:26.9066618+00:00</StartDate> </CompTeamsCompsDTO>