import 'package:openapi/api.dart';
All URIs are relative to /api
Method | HTTP request | Description |
---|---|---|
createKey | POST /api-key | |
deleteKey | DELETE /api-key/{id} | |
getKey | GET /api-key/{id} | |
getKeys | GET /api-key | |
updateKey | PUT /api-key/{id} |
APIKeyCreateResponseDto createKey(aPIKeyCreateDto)
import 'package:openapi/api.dart';
final api_instance = APIKeyApi();
final aPIKeyCreateDto = APIKeyCreateDto(); // APIKeyCreateDto |
try {
final result = api_instance.createKey(aPIKeyCreateDto);
print(result);
} catch (e) {
print('Exception when calling APIKeyApi->createKey: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
aPIKeyCreateDto | APIKeyCreateDto |
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteKey(id)
import 'package:openapi/api.dart';
final api_instance = APIKeyApi();
final id = 8.14; // num |
try {
api_instance.deleteKey(id);
} catch (e) {
print('Exception when calling APIKeyApi->deleteKey: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | num |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
APIKeyResponseDto getKey(id)
import 'package:openapi/api.dart';
final api_instance = APIKeyApi();
final id = 8.14; // num |
try {
final result = api_instance.getKey(id);
print(result);
} catch (e) {
print('Exception when calling APIKeyApi->getKey: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | num |
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List getKeys()
Example
import 'package:openapi/api.dart'; final api_instance = APIKeyApi(); try { final result = api_instance.getKeys(); print(result); } catch (e) { print('Exception when calling APIKeyApi->getKeys: $e\n'); }
Parameters
This endpoint does not need any parameter.
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateKey
APIKeyResponseDto updateKey(id, aPIKeyUpdateDto)
Example
import 'package:openapi/api.dart'; final api_instance = APIKeyApi(); final id = 8.14; // num | final aPIKeyUpdateDto = APIKeyUpdateDto(); // APIKeyUpdateDto | try { final result = api_instance.updateKey(id, aPIKeyUpdateDto); print(result); } catch (e) { print('Exception when calling APIKeyApi->updateKey: $e\n'); }
Parameters
Name Type Description Notes id num aPIKeyUpdateDto APIKeyUpdateDto Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]