mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
234 lines
8.3 KiB
Markdown
234 lines
8.3 KiB
Markdown
|
|
# openapi.api.SystemConfigApi
|
||
|
|
|
||
|
|
## Load the API package
|
||
|
|
```dart
|
||
|
|
import 'package:openapi/api.dart';
|
||
|
|
```
|
||
|
|
|
||
|
|
All URIs are relative to */api*
|
||
|
|
|
||
|
|
Method | HTTP request | Description
|
||
|
|
------------- | ------------- | -------------
|
||
|
|
[**getConfig**](SystemConfigApi.md#getconfig) | **GET** /system-config | Get system configuration
|
||
|
|
[**getConfigDefaults**](SystemConfigApi.md#getconfigdefaults) | **GET** /system-config/defaults | Get system configuration defaults
|
||
|
|
[**getStorageTemplateOptions**](SystemConfigApi.md#getstoragetemplateoptions) | **GET** /system-config/storage-template-options | Get storage template options
|
||
|
|
[**updateConfig**](SystemConfigApi.md#updateconfig) | **PUT** /system-config | Update system configuration
|
||
|
|
|
||
|
|
|
||
|
|
# **getConfig**
|
||
|
|
> SystemConfigDto getConfig()
|
||
|
|
|
||
|
|
Get system configuration
|
||
|
|
|
||
|
|
Retrieve the current system configuration.
|
||
|
|
|
||
|
|
### Example
|
||
|
|
```dart
|
||
|
|
import 'package:openapi/api.dart';
|
||
|
|
// 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';
|
||
|
|
// 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';
|
||
|
|
// 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);
|
||
|
|
|
||
|
|
final api_instance = SystemConfigApi();
|
||
|
|
|
||
|
|
try {
|
||
|
|
final result = api_instance.getConfig();
|
||
|
|
print(result);
|
||
|
|
} catch (e) {
|
||
|
|
print('Exception when calling SystemConfigApi->getConfig: $e\n');
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### Parameters
|
||
|
|
This endpoint does not need any parameter.
|
||
|
|
|
||
|
|
### Return type
|
||
|
|
|
||
|
|
[**SystemConfigDto**](SystemConfigDto.md)
|
||
|
|
|
||
|
|
### Authorization
|
||
|
|
|
||
|
|
[cookie](../README.md#cookie), [api_key](../README.md#api_key), [bearer](../README.md#bearer)
|
||
|
|
|
||
|
|
### 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)
|
||
|
|
|
||
|
|
# **getConfigDefaults**
|
||
|
|
> SystemConfigDto getConfigDefaults()
|
||
|
|
|
||
|
|
Get system configuration defaults
|
||
|
|
|
||
|
|
Retrieve the default values for the system configuration.
|
||
|
|
|
||
|
|
### Example
|
||
|
|
```dart
|
||
|
|
import 'package:openapi/api.dart';
|
||
|
|
// 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';
|
||
|
|
// 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';
|
||
|
|
// 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);
|
||
|
|
|
||
|
|
final api_instance = SystemConfigApi();
|
||
|
|
|
||
|
|
try {
|
||
|
|
final result = api_instance.getConfigDefaults();
|
||
|
|
print(result);
|
||
|
|
} catch (e) {
|
||
|
|
print('Exception when calling SystemConfigApi->getConfigDefaults: $e\n');
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### Parameters
|
||
|
|
This endpoint does not need any parameter.
|
||
|
|
|
||
|
|
### Return type
|
||
|
|
|
||
|
|
[**SystemConfigDto**](SystemConfigDto.md)
|
||
|
|
|
||
|
|
### Authorization
|
||
|
|
|
||
|
|
[cookie](../README.md#cookie), [api_key](../README.md#api_key), [bearer](../README.md#bearer)
|
||
|
|
|
||
|
|
### 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)
|
||
|
|
|
||
|
|
# **getStorageTemplateOptions**
|
||
|
|
> SystemConfigTemplateStorageOptionDto getStorageTemplateOptions()
|
||
|
|
|
||
|
|
Get storage template options
|
||
|
|
|
||
|
|
Retrieve exemplary storage template options.
|
||
|
|
|
||
|
|
### Example
|
||
|
|
```dart
|
||
|
|
import 'package:openapi/api.dart';
|
||
|
|
// 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';
|
||
|
|
// 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';
|
||
|
|
// 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);
|
||
|
|
|
||
|
|
final api_instance = SystemConfigApi();
|
||
|
|
|
||
|
|
try {
|
||
|
|
final result = api_instance.getStorageTemplateOptions();
|
||
|
|
print(result);
|
||
|
|
} catch (e) {
|
||
|
|
print('Exception when calling SystemConfigApi->getStorageTemplateOptions: $e\n');
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### Parameters
|
||
|
|
This endpoint does not need any parameter.
|
||
|
|
|
||
|
|
### Return type
|
||
|
|
|
||
|
|
[**SystemConfigTemplateStorageOptionDto**](SystemConfigTemplateStorageOptionDto.md)
|
||
|
|
|
||
|
|
### Authorization
|
||
|
|
|
||
|
|
[cookie](../README.md#cookie), [api_key](../README.md#api_key), [bearer](../README.md#bearer)
|
||
|
|
|
||
|
|
### 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)
|
||
|
|
|
||
|
|
# **updateConfig**
|
||
|
|
> SystemConfigDto updateConfig(systemConfigDto)
|
||
|
|
|
||
|
|
Update system configuration
|
||
|
|
|
||
|
|
Update the system configuration with a new system configuration.
|
||
|
|
|
||
|
|
### Example
|
||
|
|
```dart
|
||
|
|
import 'package:openapi/api.dart';
|
||
|
|
// 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';
|
||
|
|
// 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';
|
||
|
|
// 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);
|
||
|
|
|
||
|
|
final api_instance = SystemConfigApi();
|
||
|
|
final systemConfigDto = SystemConfigDto(); // SystemConfigDto |
|
||
|
|
|
||
|
|
try {
|
||
|
|
final result = api_instance.updateConfig(systemConfigDto);
|
||
|
|
print(result);
|
||
|
|
} catch (e) {
|
||
|
|
print('Exception when calling SystemConfigApi->updateConfig: $e\n');
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### Parameters
|
||
|
|
|
||
|
|
Name | Type | Description | Notes
|
||
|
|
------------- | ------------- | ------------- | -------------
|
||
|
|
**systemConfigDto** | [**SystemConfigDto**](SystemConfigDto.md)| |
|
||
|
|
|
||
|
|
### Return type
|
||
|
|
|
||
|
|
[**SystemConfigDto**](SystemConfigDto.md)
|
||
|
|
|
||
|
|
### Authorization
|
||
|
|
|
||
|
|
[cookie](../README.md#cookie), [api_key](../README.md#api_key), [bearer](../README.md#bearer)
|
||
|
|
|
||
|
|
### 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)
|
||
|
|
|