import 'package:mosquito_alert/api.dart';
All URIs are relative to https://api.mosquitoalert.com/v1
Method | HTTP request | Description |
---|---|---|
retrieve | GET /countries/{id}/ |
Country retrieve(id)
import 'package:mosquito_alert/api.dart';
// TODO Configure API key authorization: tokenAuth
//defaultApiClient.getAuthentication<ApiKeyAuth>('tokenAuth').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('tokenAuth').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: cookieAuth
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookieAuth').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('cookieAuth').apiKeyPrefix = 'Bearer';
final api = MosquitoAlert().getCountriesApi();
final int id = 56; // int | A unique integer value identifying this europe country.
try {
final response = api.retrieve(id);
print(response);
} catch on DioException (e) {
print('Exception when calling CountriesApi->retrieve: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | int | A unique integer value identifying this europe country. |
tokenAuth, cookieAuth, jwtAuth
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]