import 'package:mosquito_alert/api.dart';
All URIs are relative to https://api.mosquitoalert.com/v1
Method | HTTP request | Description |
---|---|---|
partialUpdate | PATCH /users/{uuid}/ | |
retrieve | GET /users/{uuid}/ | |
retrieveMine | GET /me/ | |
update | PUT /users/{uuid}/ |
User partialUpdate(uuid, patchedUserRequest)
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().getUsersApi();
final String uuid = uuid_example; // String |
final PatchedUserRequest patchedUserRequest = ; // PatchedUserRequest |
try {
final response = api.partialUpdate(uuid, patchedUserRequest);
print(response);
} catch on DioException (e) {
print('Exception when calling UsersApi->partialUpdate: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
uuid | String | ||
patchedUserRequest | PatchedUserRequest | [optional] |
tokenAuth, cookieAuth, jwtAuth
- 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]
User retrieve(uuid)
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().getUsersApi();
final String uuid = uuid_example; // String |
try {
final response = api.retrieve(uuid);
print(response);
} catch on DioException (e) {
print('Exception when calling UsersApi->retrieve: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
uuid | String |
tokenAuth, cookieAuth, jwtAuth
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
User retrieveMine()
Get Current User's Profile
import 'package:mosquito_alert/api.dart';
final api = MosquitoAlert().getUsersApi();
try {
final response = api.retrieveMine();
print(response);
} catch on DioException (e) {
print('Exception when calling UsersApi->retrieveMine: $e\n');
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
User update(uuid, userRequest)
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().getUsersApi();
final String uuid = uuid_example; // String |
final UserRequest userRequest = ; // UserRequest |
try {
final response = api.update(uuid, userRequest);
print(response);
} catch on DioException (e) {
print('Exception when calling UsersApi->update: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
uuid | String | ||
userRequest | UserRequest | [optional] |
tokenAuth, cookieAuth, jwtAuth
- 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]