import 'package:tba_api_client/api.dart';
All URIs are relative to https://www.thebluealliance.com/api/v3
Method | HTTP request | Description |
---|---|---|
getDistrictEvents | GET /district/{district_key}/events | |
getDistrictEventsKeys | GET /district/{district_key}/events/keys | |
getDistrictEventsSimple | GET /district/{district_key}/events/simple | |
getEvent | GET /event/{event_key} | |
getEventAlliances | GET /event/{event_key}/alliances | |
getEventAwards | GET /event/{event_key}/awards | |
getEventDistrictPoints | GET /event/{event_key}/district_points | |
getEventInsights | GET /event/{event_key}/insights | |
getEventMatchTimeseries | GET /event/{event_key}/matches/timeseries | |
getEventMatches | GET /event/{event_key}/matches | |
getEventMatchesKeys | GET /event/{event_key}/matches/keys | |
getEventMatchesSimple | GET /event/{event_key}/matches/simple | |
getEventOPRs | GET /event/{event_key}/oprs | |
getEventPredictions | GET /event/{event_key}/predictions | |
getEventRankings | GET /event/{event_key}/rankings | |
getEventSimple | GET /event/{event_key}/simple | |
getEventTeams | GET /event/{event_key}/teams | |
getEventTeamsKeys | GET /event/{event_key}/teams/keys | |
getEventTeamsSimple | GET /event/{event_key}/teams/simple | |
getEventTeamsStatuses | GET /event/{event_key}/teams/statuses | |
getEventsByYear | GET /events/{year} | |
getEventsByYearKeys | GET /events/{year}/keys | |
getEventsByYearSimple | GET /events/{year}/simple | |
getTeamEventAwards | GET /team/{team_key}/event/{event_key}/awards | |
getTeamEventMatches | GET /team/{team_key}/event/{event_key}/matches | |
getTeamEventMatchesKeys | GET /team/{team_key}/event/{event_key}/matches/keys | |
getTeamEventMatchesSimple | GET /team/{team_key}/event/{event_key}/matches/simple | |
getTeamEventStatus | GET /team/{team_key}/event/{event_key}/status | |
getTeamEvents | GET /team/{team_key}/events | |
getTeamEventsByYear | GET /team/{team_key}/events/{year} | |
getTeamEventsByYearKeys | GET /team/{team_key}/events/{year}/keys | |
getTeamEventsByYearSimple | GET /team/{team_key}/events/{year}/simple | |
getTeamEventsKeys | GET /team/{team_key}/events/keys | |
getTeamEventsSimple | GET /team/{team_key}/events/simple | |
getTeamEventsStatusesByYear | GET /team/{team_key}/events/{year}/statuses |
List getDistrictEvents(districtKey, ifModifiedSince)
Gets a list of events in the given district.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var districtKey = districtKey_example; // String | TBA District Key, eg `2016fim`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getDistrictEvents(districtKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getDistrictEvents: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
districtKey | String | TBA District Key, eg `2016fim` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getDistrictEventsKeys(districtKey, ifModifiedSince)
Gets a list of event keys for events in the given district.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var districtKey = districtKey_example; // String | TBA District Key, eg `2016fim`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getDistrictEventsKeys(districtKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getDistrictEventsKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
districtKey | String | TBA District Key, eg `2016fim` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getDistrictEventsSimple(districtKey, ifModifiedSince)
Gets a short-form list of events in the given district.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var districtKey = districtKey_example; // String | TBA District Key, eg `2016fim`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getDistrictEventsSimple(districtKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getDistrictEventsSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
districtKey | String | TBA District Key, eg `2016fim` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Event getEvent(eventKey, ifModifiedSince)
Gets an Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEvent(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEvent: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventAlliances(eventKey, ifModifiedSince)
Gets a list of Elimination Alliances for the given Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventAlliances(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventAlliances: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventAwards(eventKey, ifModifiedSince)
Gets a list of awards from the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventAwards(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventAwards: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventDistrictPoints getEventDistrictPoints(eventKey, ifModifiedSince)
Gets a list of team rankings for the Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventDistrictPoints(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventDistrictPoints: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventInsights getEventInsights(eventKey, ifModifiedSince)
Gets a set of Event-specific insights for the given Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventInsights(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventInsights: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventMatchTimeseries(eventKey, ifModifiedSince)
Gets an array of Match Keys for the given event key that have timeseries data. Returns an empty array if no matches have timeseries data. WARNING: This is not official data, and is subject to a significant possibility of error, or missing data. Do not rely on this data for any purpose. In fact, pretend we made it up. WARNING: This endpoint and corresponding data models are under active development and may change at any time, including in breaking ways.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventMatchTimeseries(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventMatchTimeseries: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventMatches(eventKey, ifModifiedSince)
Gets a list of matches for the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventMatches(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventMatches: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventMatchesKeys(eventKey, ifModifiedSince)
Gets a list of match keys for the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventMatchesKeys(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventMatchesKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventMatchesSimple(eventKey, ifModifiedSince)
Gets a short-form list of matches for the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventMatchesSimple(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventMatchesSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventOPRs getEventOPRs(eventKey, ifModifiedSince)
Gets a set of Event OPRs (including OPR, DPR, and CCWM) for the given Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventOPRs(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventOPRs: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Object getEventPredictions(eventKey, ifModifiedSince)
Gets information on TBA-generated predictions for the given Event. Contains year-specific information. WARNING This endpoint is currently under development and may change at any time.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventPredictions(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventPredictions: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventRanking getEventRankings(eventKey, ifModifiedSince)
Gets a list of team rankings for the Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventRankings(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventRankings: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventSimple getEventSimple(eventKey, ifModifiedSince)
Gets a short-form Event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventSimple(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventTeams(eventKey, ifModifiedSince)
Gets a list of Team
objects that competed in the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventTeams(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventTeams: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventTeamsKeys(eventKey, ifModifiedSince)
Gets a list of Team
keys that competed in the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventTeamsKeys(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventTeamsKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventTeamsSimple(eventKey, ifModifiedSince)
Gets a short-form list of Team
objects that competed in the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventTeamsSimple(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventTeamsSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Map<String, TeamEventStatus> getEventTeamsStatuses(eventKey, ifModifiedSince)
Gets a key-value list of the event statuses for teams competing at the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventTeamsStatuses(eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventTeamsStatuses: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventsByYear(year, ifModifiedSince)
Gets a list of events in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventsByYear(year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventsByYear: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventsByYearKeys(year, ifModifiedSince)
Gets a list of event keys in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventsByYearKeys(year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventsByYearKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getEventsByYearSimple(year, ifModifiedSince)
Gets a short-form list of events in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getEventsByYearSimple(year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getEventsByYearSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventAwards(teamKey, eventKey, ifModifiedSince)
Gets a list of awards the given team won at the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventAwards(teamKey, eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventAwards: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventMatches(teamKey, eventKey, ifModifiedSince)
Gets a list of matches for the given team and event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventMatches(teamKey, eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventMatches: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventMatchesKeys(teamKey, eventKey, ifModifiedSince)
Gets a list of match keys for matches for the given team and event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventMatchesKeys(teamKey, eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventMatchesKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventMatchesSimple(teamKey, eventKey, ifModifiedSince)
Gets a short-form list of matches for the given team and event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventMatchesSimple(teamKey, eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventMatchesSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TeamEventStatus getTeamEventStatus(teamKey, eventKey, ifModifiedSince)
Gets the competition rank and status of the team at the given event.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var eventKey = eventKey_example; // String | TBA Event Key, eg `2016nytr`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventStatus(teamKey, eventKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventStatus: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
eventKey | String | TBA Event Key, eg `2016nytr` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEvents(teamKey, ifModifiedSince)
Gets a list of all events this team has competed at.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEvents(teamKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEvents: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventsByYear(teamKey, year, ifModifiedSince)
Gets a list of events this team has competed at in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsByYear(teamKey, year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsByYear: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventsByYearKeys(teamKey, year, ifModifiedSince)
Gets a list of the event keys for events this team has competed at in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsByYearKeys(teamKey, year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsByYearKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventsByYearSimple(teamKey, year, ifModifiedSince)
Gets a short-form list of events this team has competed at in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsByYearSimple(teamKey, year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsByYearSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventsKeys(teamKey, ifModifiedSince)
Gets a list of the event keys for all events this team has competed at.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsKeys(teamKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsKeys: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
List
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getTeamEventsSimple(teamKey, ifModifiedSince)
Gets a short-form list of all events this team has competed at.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsSimple(teamKey, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsSimple: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Map<String, TeamEventStatus> getTeamEventsStatusesByYear(teamKey, year, ifModifiedSince)
Gets a key-value list of the event statuses for events this team has competed at in the given year.
import 'package:tba_api_client/api.dart';
// TODO Configure API key authorization: apiKey
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('apiKey').apiKeyPrefix = 'Bearer';
var api_instance = EventApi();
var teamKey = teamKey_example; // String | TBA Team Key, eg `frc254`
var year = 56; // int | Competition Year (or Season). Must be 4 digits.
var ifModifiedSince = ifModifiedSince_example; // String | Value of the `Last-Modified` header in the most recently cached response by the client.
try {
var result = api_instance.getTeamEventsStatusesByYear(teamKey, year, ifModifiedSince);
print(result);
} catch (e) {
print("Exception when calling EventApi->getTeamEventsStatusesByYear: $e\n");
}
Name | Type | Description | Notes |
---|---|---|---|
teamKey | String | TBA Team Key, eg `frc254` | [default to null] |
year | int | Competition Year (or Season). Must be 4 digits. | [default to null] |
ifModifiedSince | String | Value of the `Last-Modified` header in the most recently cached response by the client. | [optional] [default to null] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]