2023-01-02 13:22:33 -07:00
# openapi.api.APIKeyApi
## Load the API package
```dart
import 'package:openapi/api.dart';
```
All URIs are relative to */api*
Method | HTTP request | Description
------------- | ------------- | -------------
2023-11-03 18:33:15 -07:00
[**createApiKey** ](APIKeyApi.md#createapikey ) | **POST** /api-key |
[**deleteApiKey** ](APIKeyApi.md#deleteapikey ) | **DELETE** /api-key/{id} |
[**getApiKey** ](APIKeyApi.md#getapikey ) | **GET** /api-key/{id} |
[**getApiKeys** ](APIKeyApi.md#getapikeys ) | **GET** /api-key |
[**updateApiKey** ](APIKeyApi.md#updateapikey ) | **PUT** /api-key/{id} |
2023-01-02 13:22:33 -07:00
2023-11-03 18:33:15 -07:00
# **createApiKey**
> APIKeyCreateResponseDto createApiKey(aPIKeyCreateDto)
2023-01-02 13:22:33 -07:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-08 19:26:09 -07:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 09:41:29 -07:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 09:01:10 -07:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2023-01-02 13:22:33 -07:00
final api_instance = APIKeyApi();
final aPIKeyCreateDto = APIKeyCreateDto(); // APIKeyCreateDto |
try {
2023-11-03 18:33:15 -07:00
final result = api_instance.createApiKey(aPIKeyCreateDto);
2023-01-02 13:22:33 -07:00
print(result);
} catch (e) {
2023-11-03 18:33:15 -07:00
print('Exception when calling APIKeyApi->createApiKey: $e\n');
2023-01-02 13:22:33 -07:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**aPIKeyCreateDto** | [**APIKeyCreateDto** ](APIKeyCreateDto.md )| |
### Return type
[**APIKeyCreateResponseDto** ](APIKeyCreateResponseDto.md )
### Authorization
2023-05-04 09:41:29 -07:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2023-01-02 13:22:33 -07:00
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-03 18:33:15 -07:00
# **deleteApiKey**
> deleteApiKey(id)
2023-01-02 13:22:33 -07:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-08 19:26:09 -07:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 09:41:29 -07:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 09:01:10 -07:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2023-01-02 13:22:33 -07:00
final api_instance = APIKeyApi();
2023-04-04 15:24:08 -07:00
final id = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
2023-01-02 13:22:33 -07:00
try {
2023-11-03 18:33:15 -07:00
api_instance.deleteApiKey(id);
2023-01-02 13:22:33 -07:00
} catch (e) {
2023-11-03 18:33:15 -07:00
print('Exception when calling APIKeyApi->deleteApiKey: $e\n');
2023-01-02 13:22:33 -07:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
2023-02-19 09:44:53 -07:00
**id** | **String** | |
2023-01-02 13:22:33 -07:00
### Return type
void (empty response body)
### Authorization
2023-05-04 09:41:29 -07:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2023-01-02 13:22:33 -07:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-03 18:33:15 -07:00
# **getApiKey**
> APIKeyResponseDto getApiKey(id)
2023-01-02 13:22:33 -07:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-08 19:26:09 -07:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 09:41:29 -07:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 09:01:10 -07:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2023-01-02 13:22:33 -07:00
final api_instance = APIKeyApi();
2023-04-04 15:24:08 -07:00
final id = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
2023-01-02 13:22:33 -07:00
try {
2023-11-03 18:33:15 -07:00
final result = api_instance.getApiKey(id);
2023-01-02 13:22:33 -07:00
print(result);
} catch (e) {
2023-11-03 18:33:15 -07:00
print('Exception when calling APIKeyApi->getApiKey: $e\n');
2023-01-02 13:22:33 -07:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
2023-02-19 09:44:53 -07:00
**id** | **String** | |
2023-01-02 13:22:33 -07:00
### Return type
[**APIKeyResponseDto** ](APIKeyResponseDto.md )
### Authorization
2023-05-04 09:41:29 -07:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2023-01-02 13:22:33 -07:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-03 18:33:15 -07:00
# **getApiKeys**
> List<APIKeyResponseDto> getApiKeys()
2023-01-02 13:22:33 -07:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-08 19:26:09 -07:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 09:41:29 -07:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 09:01:10 -07:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2023-01-02 13:22:33 -07:00
final api_instance = APIKeyApi();
try {
2023-11-03 18:33:15 -07:00
final result = api_instance.getApiKeys();
2023-01-02 13:22:33 -07:00
print(result);
} catch (e) {
2023-11-03 18:33:15 -07:00
print('Exception when calling APIKeyApi->getApiKeys: $e\n');
2023-01-02 13:22:33 -07:00
}
```
### Parameters
This endpoint does not need any parameter.
### Return type
[**List<APIKeyResponseDto>** ](APIKeyResponseDto.md )
### Authorization
2023-05-04 09:41:29 -07:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2023-01-02 13:22:33 -07:00
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2023-11-03 18:33:15 -07:00
# **updateApiKey**
> APIKeyResponseDto updateApiKey(id, aPIKeyUpdateDto)
2023-01-02 13:22:33 -07:00
### Example
```dart
import 'package:openapi/api.dart';
2023-04-08 19:26:09 -07:00
// TODO Configure API key authorization: cookie
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('cookie').apiKeyPrefix = 'Bearer';
2023-05-04 09:41:29 -07:00
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication< ApiKeyAuth > ('api_key').apiKeyPrefix = 'Bearer';
2023-02-24 09:01:10 -07:00
// TODO Configure HTTP Bearer authorization: bearer
// Case 1. Use String Token
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken('YOUR_ACCESS_TOKEN');
// Case 2. Use Function which generate token.
// String yourTokenGeneratorFunction() { ... }
//defaultApiClient.getAuthentication< HttpBearerAuth > ('bearer').setAccessToken(yourTokenGeneratorFunction);
2023-01-02 13:22:33 -07:00
final api_instance = APIKeyApi();
2023-04-04 15:24:08 -07:00
final id = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
2023-01-02 13:22:33 -07:00
final aPIKeyUpdateDto = APIKeyUpdateDto(); // APIKeyUpdateDto |
try {
2023-11-03 18:33:15 -07:00
final result = api_instance.updateApiKey(id, aPIKeyUpdateDto);
2023-01-02 13:22:33 -07:00
print(result);
} catch (e) {
2023-11-03 18:33:15 -07:00
print('Exception when calling APIKeyApi->updateApiKey: $e\n');
2023-01-02 13:22:33 -07:00
}
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
2023-02-19 09:44:53 -07:00
**id** | **String** | |
2023-01-02 13:22:33 -07:00
**aPIKeyUpdateDto** | [**APIKeyUpdateDto** ](APIKeyUpdateDto.md )| |
### Return type
[**APIKeyResponseDto** ](APIKeyResponseDto.md )
### Authorization
2023-05-04 09:41:29 -07:00
[cookie ](../README.md#cookie ), [api_key ](../README.md#api_key ), [bearer ](../README.md#bearer )
2023-01-02 13:22:33 -07:00
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)