Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.9 KB

FixesApi.md

File metadata and controls

63 lines (43 loc) · 1.9 KB

mosquito_alert.api.FixesApi

Load the API package

import 'package:mosquito_alert/api.dart';

All URIs are relative to https://api.mosquitoalert.com/v1

Method HTTP request Description
create POST /fixes/

create

Fix create(fixRequest)

Example

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().getFixesApi();
final FixRequest fixRequest = ; // FixRequest | 

try {
    final response = api.create(fixRequest);
    print(response);
} catch on DioException (e) {
    print('Exception when calling FixesApi->create: $e\n');
}

Parameters

Name Type Description Notes
fixRequest FixRequest

Return type

Fix

Authorization

tokenAuth, cookieAuth, jwtAuth

HTTP request headers

  • Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]