mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-10-29 13:56:21 +00:00
This fix implements the long term goal to have the EOS server run optimization (or
energy management) on regular intervals automatically. Thus clients can request
the current energy management plan at any time and it is updated on regular
intervals without interaction by the client.
This fix started out to "only" make automatic optimization (or energy management)
runs working. It turned out there are several endpoints that in some way
update predictions or run the optimization. To lock against such concurrent attempts
the code had to be refactored to allow control of execution. During refactoring it
became clear that some classes and files are named without a proper reference
to their usage. Thus not only refactoring but also renaming became necessary.
The names are still not the best, but I hope they are more intuitive.
The fix includes several bug fixes that are not directly related to the automatic optimization
but are necessary to keep EOS running properly to do the automatic optimization and
to test and document the changes.
This is a breaking change as the configuration structure changed once again and
the server API was also enhanced and streamlined. The server API that is used by
Andreas and Jörg in their videos has not changed.
* fix: automatic optimization
Allow optimization to automatically run on configured intervals gathering all
optimization parameters from configuration and predictions. The automatic run
can be configured to only run prediction updates skipping the optimization.
Extend documentaion to also cover automatic optimization. Lock automatic runs
against runs initiated by the /optimize or other endpoints. Provide new
endpoints to retrieve the energy management plan and the genetic solution
of the latest automatic optimization run. Offload energy management to thread
pool executor to keep the app more responsive during the CPU heavy optimization
run.
* fix: EOS servers recognize environment variables on startup
Force initialisation of EOS configuration on server startup to assure
all sources of EOS configuration are properly set up and read. Adapt
server tests and configuration tests to also test for environment
variable configuration.
* fix: Remove 0.0.0.0 to localhost translation under Windows
EOS imposed a 0.0.0.0 to localhost translation under Windows for
convenience. This caused some trouble in user configurations. Now, as the
default IP address configuration is 127.0.0.1, the user is responsible
for to set up the correct Windows compliant IP address.
* fix: allow names for hosts additional to IP addresses
* fix: access pydantic model fields by class
Access by instance is deprecated.
* fix: down sampling key_to_array
* fix: make cache clear endpoint clear all cache files
Make /v1/admin/cache/clear clear all cache files. Before it only cleared
expired cache files by default. Add new endpoint /v1/admin/clear-expired
to only clear expired cache files.
* fix: timezonefinder returns Europe/Paris instead of Europe/Berlin
timezonefinder 8.10 got more inaccurate for timezones in europe as there is
a common timezone. Use new package tzfpy instead which is still returning
Europe/Berlin if you are in Germany. tzfpy also claims to be faster than
timezonefinder.
* fix: provider settings configuration
Provider configuration used to be a union holding the settings for several
providers. Pydantic union handling does not always find the correct type
for a provider setting. This led to exceptions in specific configurations.
Now provider settings are explicit comfiguration items for each possible
provider. This is a breaking change as the configuration structure was
changed.
* fix: ClearOutside weather prediction irradiance calculation
Pvlib needs a pandas time index. Convert time index.
* fix: test config file priority
Do not use config_eos fixture as this fixture already creates a config file.
* fix: optimization sample request documentation
Provide all data in documentation of optimization sample request.
* fix: gitlint blocking pip dependency resolution
Replace gitlint by commitizen. Gitlint is not actively maintained anymore.
Gitlint dependencies blocked pip from dependency resolution.
* fix: sync pre-commit config to actual dependency requirements
.pre-commit-config.yaml was out of sync, also requirements-dev.txt.
* fix: missing babel in requirements.txt
Add babel to requirements.txt
* feat: setup default device configuration for automatic optimization
In case the parameters for automatic optimization are not fully defined a
default configuration is setup to allow the automatic energy management
run. The default configuration may help the user to correctly define
the device configuration.
* feat: allow configuration of genetic algorithm parameters
The genetic algorithm parameters for number of individuals, number of
generations, the seed and penalty function parameters are now avaliable
as configuration options.
* feat: allow configuration of home appliance time windows
The time windows a home appliance is allowed to run are now configurable
by the configuration (for /v1 API) and also by the home appliance parameters
(for the classic /optimize API). If there is no such configuration the
time window defaults to optimization hours, which was the standard before
the change. Documentation on how to configure time windows is added.
* feat: standardize mesaurement keys for battery/ ev SoC measurements
The standardized measurement keys to report battery SoC to the device
simulations can now be retrieved from the device configuration as a
read-only config option.
* feat: feed in tariff prediction
Add feed in tarif predictions needed for automatic optimization. The feed in
tariff can be retrieved as fixed feed in tarif or can be imported. Also add
tests for the different feed in tariff providers. Extend documentation to
cover the feed in tariff providers.
* feat: add energy management plan based on S2 standard instructions
EOS can generate an energy management plan as a list of simple instructions.
May be retrieved by the /v1/energy-management/plan endpoint. The instructions
loosely follow the S2 energy management standard.
* feat: make measurement keys configurable by EOS configuration.
The fixed measurement keys are replaced by configurable measurement keys.
* feat: make pendulum DateTime, Date, Duration types usable for pydantic models
Use pydantic_extra_types.pendulum_dt to get pydantic pendulum types. Types are
added to the datetimeutil utility. Remove custom made pendulum adaptations
from EOS pydantic module. Make EOS modules use the pydantic pendulum types
managed by the datetimeutil module instead of the core pendulum types.
* feat: Add Time, TimeWindow, TimeWindowSequence and to_time to datetimeutil.
The time windows are are added to support home appliance time window
configuration. All time classes are also pydantic models. Time is the base
class for time definition derived from pendulum.Time.
* feat: Extend DataRecord by configurable field like data.
Configurable field like data was added to support the configuration of
measurement records.
* feat: Add additional information to health information
Version information is added to the health endpoints of eos and eosDash.
The start time of the last optimization and the latest run time of the energy
management is added to the EOS health information.
* feat: add pydantic merge model tests
* feat: add plan tab to EOSdash
The plan tab displays the current energy management instructions.
* feat: add predictions tab to EOSdash
The predictions tab displays the current predictions.
* feat: add cache management to EOSdash admin tab
The admin tab is extended by a section for cache management. It allows to
clear the cache.
* feat: add about tab to EOSdash
The about tab resembles the former hello tab and provides extra information.
* feat: Adapt changelog and prepare for release management
Release management using commitizen is added. The changelog file is adapted and
teh changelog and a description for release management is added in the
documentation.
* feat(doc): Improve install and devlopment documentation
Provide a more concise installation description in Readme.md and add extra
installation page and development page to documentation.
* chore: Use memory cache for interpolation instead of dict in inverter
Decorate calculate_self_consumption() with @cachemethod_until_update to cache
results in memory during an energy management/ optimization run. Replacement
of dict type caching in inverter is now possible because all optimization
runs are properly locked and the memory cache CacheUntilUpdateStore is properly
cleared at the start of any energy management/ optimization operation.
* chore: refactor genetic
Refactor the genetic algorithm modules for enhanced module structure and better
readability. Removed unnecessary and overcomplex devices singleton. Also
split devices configuration from genetic algorithm parameters to allow further
development independently from genetic algorithm parameter format. Move
charge rates configuration for electric vehicles from optimization to devices
configuration to allow to have different charge rates for different cars in
the future.
* chore: Rename memory cache to CacheEnergyManagementStore
The name better resembles the task of the cache to chache function and method
results for an energy management run. Also the decorator functions are renamed
accordingly: cachemethod_energy_management, cache_energy_management
* chore: use class properties for config/ems/prediction mixin classes
* chore: skip debug logs from mathplotlib
Mathplotlib is very noisy in debug mode.
* chore: automatically sync bokeh js to bokeh python package
bokeh was updated to 3.8.0, make JS CDN automatically follow the package version.
* chore: rename hello.py to about.py
Make hello.py the adapted EOSdash about page.
* chore: remove demo page from EOSdash
As no the plan and prediction pages are working without configuration, the demo
page is no longer necessary
* chore: split test_server.py for system test
Split test_server.py to create explicit test_system.py for system tests.
* chore: move doc utils to generate_config_md.py
The doc utils are only used in scripts/generate_config_md.py. Move it there to
attribute for strong cohesion.
* chore: improve pydantic merge model documentation
* chore: remove pendulum warning from readme
* chore: remove GitHub discussions from contributing documentation
Github discussions is to be replaced by Akkudoktor.net.
* chore(release): bump version to 0.1.0+dev for development
* build(deps): bump fastapi[standard] from 0.115.14 to 0.117.1
bump fastapi and make coverage version (for pytest-cov) explicit to avoid pip break.
* build(deps): bump uvicorn from 0.36.0 to 0.37.0
BREAKING CHANGE: EOS configuration changed. V1 API changed.
- The available_charge_rates_percent configuration is removed from optimization.
Use the new charge_rate configuration for the electric vehicle
- Optimization configuration parameter hours renamed to horizon_hours
- Device configuration now has to provide the number of devices and device
properties per device.
- Specific prediction provider configuration to be provided by explicit
configuration item (no union for all providers).
- Measurement keys to be provided as a list.
- New feed in tariff providers have to be configured.
- /v1/measurement/loadxxx endpoints are removed. Use generic mesaurement endpoints.
- /v1/admin/cache/clear now clears all cache files. Use
/v1/admin/cache/clear-expired to only clear all expired cache files.
Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
1073 lines
29 KiB
Markdown
1073 lines
29 KiB
Markdown
# Akkudoktor-EOS
|
|
|
|
**Version**: `v0.1.0+dev`
|
|
|
|
**Description**: This project provides a comprehensive solution for simulating and optimizing an energy system based on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries), load management (consumer requirements), heat pumps, electric vehicles, and consideration of electricity price data, this system enables forecasting and optimization of energy flow and costs over a specified period.
|
|
|
|
**Base URL**: `No base URL provided.`
|
|
|
|
**Endpoints**:
|
|
|
|
## POST /gesamtlast
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_gesamtlast_gesamtlast_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_gesamtlast_gesamtlast_post)
|
|
|
|
Fastapi Gesamtlast
|
|
|
|
```
|
|
Deprecated: Total Load Prediction with adjustment.
|
|
|
|
Endpoint to handle total load prediction adjusted by latest measured data.
|
|
|
|
Total load prediction starts at 00.00.00 today and is provided for 48 hours.
|
|
If no prediction values are available the missing ones at the start of the series are
|
|
filled with the first available prediction value.
|
|
|
|
Note:
|
|
Use '/v1/prediction/list?key=load_mean_adjusted' instead.
|
|
Load energy meter readings to be added to EOS measurement by:
|
|
'/v1/measurement/value' or
|
|
'/v1/measurement/series' or
|
|
'/v1/measurement/dataframe' or
|
|
'/v1/measurement/data'
|
|
```
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/GesamtlastRequest"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /gesamtlast_simple
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_gesamtlast_simple_gesamtlast_simple_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_gesamtlast_simple_gesamtlast_simple_get)
|
|
|
|
Fastapi Gesamtlast Simple
|
|
|
|
```
|
|
Deprecated: Total Load Prediction.
|
|
|
|
Endpoint to handle total load prediction.
|
|
|
|
Total load prediction starts at 00.00.00 today and is provided for 48 hours.
|
|
If no prediction values are available the missing ones at the start of the series are
|
|
filled with the first available prediction value.
|
|
|
|
Args:
|
|
year_energy (float): Yearly energy consumption in Wh.
|
|
|
|
Note:
|
|
Set LoadAkkudoktor as provider, then update data with
|
|
'/v1/prediction/update'
|
|
and then request data with
|
|
'/v1/prediction/list?key=load_mean' instead.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `year_energy` (query, required): No description provided.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## POST /optimize
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_optimize_optimize_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_optimize_optimize_post)
|
|
|
|
Fastapi Optimize
|
|
|
|
```
|
|
Deprecated: Optimize.
|
|
|
|
Endpoint to handle optimization.
|
|
|
|
Note:
|
|
Use automatic optimization instead.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `start_hour` (query, optional): Defaults to current hour of the day.
|
|
|
|
- `ngen` (query, optional): Number of indivuals to generate for genetic algorithm.
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/GeneticOptimizationParameters"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /pvforecast
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_pvforecast_pvforecast_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_pvforecast_pvforecast_get)
|
|
|
|
Fastapi Pvforecast
|
|
|
|
```
|
|
Deprecated: PV Forecast Prediction.
|
|
|
|
Endpoint to handle PV forecast prediction.
|
|
|
|
PVForecast starts at 00.00.00 today and is provided for 48 hours.
|
|
If no forecast values are available the missing ones at the start of the series are
|
|
filled with the first available forecast value.
|
|
|
|
Note:
|
|
Set PVForecastAkkudoktor as provider, then update data with
|
|
'/v1/prediction/update'
|
|
and then request data with
|
|
'/v1/prediction/list?key=pvforecast_ac_power' and
|
|
'/v1/prediction/list?key=pvforecastakkudoktor_temp_air' instead.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /strompreis
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_strompreis_strompreis_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_strompreis_strompreis_get)
|
|
|
|
Fastapi Strompreis
|
|
|
|
```
|
|
Deprecated: Electricity Market Price Prediction per Wh (€/Wh).
|
|
|
|
Electricity prices start at 00.00.00 today and are provided for 48 hours.
|
|
If no prices are available the missing ones at the start of the series are
|
|
filled with the first available price.
|
|
|
|
Note:
|
|
Electricity price charges are added.
|
|
|
|
Note:
|
|
Set ElecPriceAkkudoktor as provider, then update data with
|
|
'/v1/prediction/update'
|
|
and then request data with
|
|
'/v1/prediction/list?key=elecprice_marketprice_wh' or
|
|
'/v1/prediction/list?key=elecprice_marketprice_kwh' instead.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/admin/cache
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_cache_get_v1_admin_cache_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_cache_get_v1_admin_cache_get)
|
|
|
|
Fastapi Admin Cache Get
|
|
|
|
```
|
|
Current cache management data.
|
|
|
|
Returns:
|
|
data (dict): The management data.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/cache/clear
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_cache_clear_post_v1_admin_cache_clear_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_cache_clear_post_v1_admin_cache_clear_post)
|
|
|
|
Fastapi Admin Cache Clear Post
|
|
|
|
```
|
|
Clear the cache.
|
|
|
|
Deletes all cache files.
|
|
|
|
Returns:
|
|
data (dict): The management data after cleanup.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/cache/clear-expired
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_cache_clear_expired_post_v1_admin_cache_clear-expired_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_cache_clear_expired_post_v1_admin_cache_clear-expired_post)
|
|
|
|
Fastapi Admin Cache Clear Expired Post
|
|
|
|
```
|
|
Clear the cache from expired data.
|
|
|
|
Deletes expired cache files.
|
|
|
|
Returns:
|
|
data (dict): The management data after cleanup.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/cache/load
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_cache_load_post_v1_admin_cache_load_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_cache_load_post_v1_admin_cache_load_post)
|
|
|
|
Fastapi Admin Cache Load Post
|
|
|
|
```
|
|
Load cache management data.
|
|
|
|
Returns:
|
|
data (dict): The management data that was loaded.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/cache/save
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_cache_save_post_v1_admin_cache_save_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_cache_save_post_v1_admin_cache_save_post)
|
|
|
|
Fastapi Admin Cache Save Post
|
|
|
|
```
|
|
Save the current cache management data.
|
|
|
|
Returns:
|
|
data (dict): The management data that was saved.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/server/restart
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_server_restart_post_v1_admin_server_restart_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_server_restart_post_v1_admin_server_restart_post)
|
|
|
|
Fastapi Admin Server Restart Post
|
|
|
|
```
|
|
Restart the server.
|
|
|
|
Restart EOS properly by starting a new instance before exiting the old one.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/admin/server/shutdown
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_admin_server_shutdown_post_v1_admin_server_shutdown_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_admin_server_shutdown_post_v1_admin_server_shutdown_post)
|
|
|
|
Fastapi Admin Server Shutdown Post
|
|
|
|
```
|
|
Shutdown the server.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/config
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_get_v1_config_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_get_v1_config_get)
|
|
|
|
Fastapi Config Get
|
|
|
|
```
|
|
Get the current configuration.
|
|
|
|
Returns:
|
|
configuration (ConfigEOS): The current configuration.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## PUT /v1/config
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_put_v1_config_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_put_v1_config_put)
|
|
|
|
Fastapi Config Put
|
|
|
|
```
|
|
Update the current config with the provided settings.
|
|
|
|
Note that for any setting value that is None or unset, the configuration will fall back to
|
|
values from other sources such as environment variables, the EOS configuration file, or default
|
|
values.
|
|
|
|
Args:
|
|
settings (SettingsEOS): The settings to write into the current settings.
|
|
|
|
Returns:
|
|
configuration (ConfigEOS): The current configuration after the write.
|
|
```
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/SettingsEOS"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/config/file
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_file_put_v1_config_file_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_file_put_v1_config_file_put)
|
|
|
|
Fastapi Config File Put
|
|
|
|
```
|
|
Save the current configuration to the EOS configuration file.
|
|
|
|
Returns:
|
|
configuration (ConfigEOS): The current configuration that was saved.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## POST /v1/config/reset
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_reset_post_v1_config_reset_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_reset_post_v1_config_reset_post)
|
|
|
|
Fastapi Config Reset Post
|
|
|
|
```
|
|
Reset the configuration to the EOS configuration file.
|
|
|
|
Returns:
|
|
configuration (ConfigEOS): The current configuration after update.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/config/{path}
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_get_key_v1_config__path__get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_get_key_v1_config__path__get)
|
|
|
|
Fastapi Config Get Key
|
|
|
|
```
|
|
Get the value of a nested key or index in the config model.
|
|
|
|
Args:
|
|
path (str): The nested path to the key (e.g., "general/latitude" or "optimize/nested_list/0").
|
|
|
|
Returns:
|
|
value (Any): The value of the selected nested key.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `path` (path, required): The nested path to the configuration key (e.g., general/latitude).
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/config/{path}
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_config_put_key_v1_config__path__put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_config_put_key_v1_config__path__put)
|
|
|
|
Fastapi Config Put Key
|
|
|
|
```
|
|
Update a nested key or index in the config model.
|
|
|
|
Args:
|
|
path (str): The nested path to the key (e.g., "general/latitude" or "optimize/nested_list/0").
|
|
value (Any): The new value to assign to the key or index at path.
|
|
|
|
Returns:
|
|
configuration (ConfigEOS): The current configuration after the update.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `path` (path, required): The nested path to the configuration key (e.g., general/latitude).
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"anyOf": [
|
|
{},
|
|
{
|
|
"type": "null"
|
|
}
|
|
],
|
|
"description": "The value to assign to the specified configuration path (can be None).",
|
|
"title": "Value"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/energy-management/optimization/solution
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_energy_management_optimization_solution_get_v1_energy-management_optimization_solution_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_energy_management_optimization_solution_get_v1_energy-management_optimization_solution_get)
|
|
|
|
Fastapi Energy Management Optimization Solution Get
|
|
|
|
```
|
|
Get the latest solution of the optimization.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/energy-management/plan
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_energy_management_plan_get_v1_energy-management_plan_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_energy_management_plan_get_v1_energy-management_plan_get)
|
|
|
|
Fastapi Energy Management Plan Get
|
|
|
|
```
|
|
Get the latest energy management plan.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/health
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_health_get_v1_health_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_health_get_v1_health_get)
|
|
|
|
Fastapi Health Get
|
|
|
|
```
|
|
Health check endpoint to verify that the EOS server is alive.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/logging/log
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_logging_get_log_v1_logging_log_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_logging_get_log_v1_logging_log_get)
|
|
|
|
Fastapi Logging Get Log
|
|
|
|
```
|
|
Get structured log entries from the EOS log file.
|
|
|
|
Filters and returns log entries based on the specified query parameters. The log
|
|
file is expected to contain newline-delimited JSON entries.
|
|
|
|
Args:
|
|
limit (int): Maximum number of entries to return.
|
|
level (Optional[str]): Filter logs by severity level (e.g., DEBUG, INFO).
|
|
contains (Optional[str]): Return only logs that include this string in the message.
|
|
regex (Optional[str]): Return logs that match this regular expression in the message.
|
|
from_time (Optional[str]): ISO 8601 timestamp to filter logs not older than this.
|
|
to_time (Optional[str]): ISO 8601 timestamp to filter logs not newer than this.
|
|
tail (bool): If True, fetch the most recent log entries (like `tail`).
|
|
|
|
Returns:
|
|
JSONResponse: A JSON list of log entries.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `limit` (query, optional): Maximum number of log entries to return.
|
|
|
|
- `level` (query, optional): Filter by log level (e.g., INFO, ERROR).
|
|
|
|
- `contains` (query, optional): Filter logs containing this substring.
|
|
|
|
- `regex` (query, optional): Filter logs by matching regex in message.
|
|
|
|
- `from_time` (query, optional): Start time (ISO format) for filtering logs.
|
|
|
|
- `to_time` (query, optional): End time (ISO format) for filtering logs.
|
|
|
|
- `tail` (query, optional): If True, returns the most recent lines (tail mode).
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/measurement/data
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_data_put_v1_measurement_data_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_data_put_v1_measurement_data_put)
|
|
|
|
Fastapi Measurement Data Put
|
|
|
|
```
|
|
Merge the measurement data given as datetime data into EOS measurements.
|
|
```
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/PydanticDateTimeData"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/measurement/dataframe
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_dataframe_put_v1_measurement_dataframe_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_dataframe_put_v1_measurement_dataframe_put)
|
|
|
|
Fastapi Measurement Dataframe Put
|
|
|
|
```
|
|
Merge the measurement data given as dataframe into EOS measurements.
|
|
```
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/PydanticDateTimeDataFrame"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/measurement/keys
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_keys_get_v1_measurement_keys_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_keys_get_v1_measurement_keys_get)
|
|
|
|
Fastapi Measurement Keys Get
|
|
|
|
```
|
|
Get a list of available measurement keys.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/measurement/series
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_series_get_v1_measurement_series_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_series_get_v1_measurement_series_get)
|
|
|
|
Fastapi Measurement Series Get
|
|
|
|
```
|
|
Get the measurements of given key as series.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `key` (query, required): Measurement key.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/measurement/series
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_series_put_v1_measurement_series_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_series_put_v1_measurement_series_put)
|
|
|
|
Fastapi Measurement Series Put
|
|
|
|
```
|
|
Merge measurement given as series into given key.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `key` (query, required): Measurement key.
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"$ref": "#/components/schemas/PydanticDateTimeSeries"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/measurement/value
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_measurement_value_put_v1_measurement_value_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_measurement_value_put_v1_measurement_value_put)
|
|
|
|
Fastapi Measurement Value Put
|
|
|
|
```
|
|
Merge the measurement of given key and value into EOS measurements at given datetime.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `datetime` (query, required): Datetime.
|
|
|
|
- `key` (query, required): Measurement key.
|
|
|
|
- `value` (query, required): No description provided.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/prediction/dataframe
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_dataframe_get_v1_prediction_dataframe_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_dataframe_get_v1_prediction_dataframe_get)
|
|
|
|
Fastapi Prediction Dataframe Get
|
|
|
|
```
|
|
Get prediction for given key within given date range as series.
|
|
|
|
Args:
|
|
key (str): Prediction key
|
|
start_datetime (Optional[str]): Starting datetime (inclusive).
|
|
Defaults to start datetime of latest prediction.
|
|
end_datetime (Optional[str]: Ending datetime (exclusive).
|
|
|
|
Defaults to end datetime of latest prediction.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `keys` (query, required): Prediction keys.
|
|
|
|
- `start_datetime` (query, optional): Starting datetime (inclusive).
|
|
|
|
- `end_datetime` (query, optional): Ending datetime (exclusive).
|
|
|
|
- `interval` (query, optional): Time duration for each interval. Defaults to 1 hour.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/prediction/import/{provider_id}
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_import_provider_v1_prediction_import__provider_id__put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_import_provider_v1_prediction_import__provider_id__put)
|
|
|
|
Fastapi Prediction Import Provider
|
|
|
|
```
|
|
Import prediction for given provider ID.
|
|
|
|
Args:
|
|
provider_id: ID of provider to update.
|
|
data: Prediction data.
|
|
force_enable: Update data even if provider is disabled.
|
|
Defaults to False.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `provider_id` (path, required): Provider ID.
|
|
|
|
- `force_enable` (query, optional): No description provided.
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/components/schemas/PydanticDateTimeDataFrame"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/PydanticDateTimeData"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": true
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
],
|
|
"title": "Data"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/prediction/keys
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_keys_get_v1_prediction_keys_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_keys_get_v1_prediction_keys_get)
|
|
|
|
Fastapi Prediction Keys Get
|
|
|
|
```
|
|
Get a list of available prediction keys.
|
|
```
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|
|
|
|
## GET /v1/prediction/list
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_list_get_v1_prediction_list_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_list_get_v1_prediction_list_get)
|
|
|
|
Fastapi Prediction List Get
|
|
|
|
```
|
|
Get prediction for given key within given date range as value list.
|
|
|
|
Args:
|
|
key (str): Prediction key
|
|
start_datetime (Optional[str]): Starting datetime (inclusive).
|
|
Defaults to start datetime of latest prediction.
|
|
end_datetime (Optional[str]: Ending datetime (exclusive).
|
|
Defaults to end datetime of latest prediction.
|
|
interval (Optional[str]): Time duration for each interval.
|
|
Defaults to 1 hour.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `key` (query, required): Prediction key.
|
|
|
|
- `start_datetime` (query, optional): Starting datetime (inclusive).
|
|
|
|
- `end_datetime` (query, optional): Ending datetime (exclusive).
|
|
|
|
- `interval` (query, optional): Time duration for each interval. Defaults to 1 hour.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/prediction/providers
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_providers_get_v1_prediction_providers_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_providers_get_v1_prediction_providers_get)
|
|
|
|
Fastapi Prediction Providers Get
|
|
|
|
```
|
|
Get a list of available prediction providers.
|
|
|
|
Args:
|
|
enabled (bool): Return enabled/disabled providers. If unset, return all providers.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `enabled` (query, optional): No description provided.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/prediction/series
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_series_get_v1_prediction_series_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_series_get_v1_prediction_series_get)
|
|
|
|
Fastapi Prediction Series Get
|
|
|
|
```
|
|
Get prediction for given key within given date range as series.
|
|
|
|
Args:
|
|
key (str): Prediction key
|
|
start_datetime (Optional[str]): Starting datetime (inclusive).
|
|
Defaults to start datetime of latest prediction.
|
|
end_datetime (Optional[str]: Ending datetime (exclusive).
|
|
Defaults to end datetime of latest prediction.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `key` (query, required): Prediction key.
|
|
|
|
- `start_datetime` (query, optional): Starting datetime (inclusive).
|
|
|
|
- `end_datetime` (query, optional): Ending datetime (exclusive).
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## POST /v1/prediction/update
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_update_v1_prediction_update_post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_update_v1_prediction_update_post)
|
|
|
|
Fastapi Prediction Update
|
|
|
|
```
|
|
Update predictions for all providers.
|
|
|
|
Args:
|
|
force_update: Update data even if it is already cached.
|
|
Defaults to False.
|
|
force_enable: Update data even if provider is disabled.
|
|
Defaults to False.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `force_update` (query, optional): No description provided.
|
|
|
|
- `force_enable` (query, optional): No description provided.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## POST /v1/prediction/update/{provider_id}
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_prediction_update_provider_v1_prediction_update__provider_id__post), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_prediction_update_provider_v1_prediction_update__provider_id__post)
|
|
|
|
Fastapi Prediction Update Provider
|
|
|
|
```
|
|
Update predictions for given provider ID.
|
|
|
|
Args:
|
|
provider_id: ID of provider to update.
|
|
force_update: Update data even if it is already cached.
|
|
Defaults to False.
|
|
force_enable: Update data even if provider is disabled.
|
|
Defaults to False.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `provider_id` (path, required): No description provided.
|
|
|
|
- `force_update` (query, optional): No description provided.
|
|
|
|
- `force_enable` (query, optional): No description provided.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /v1/resource/status
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_devices_status_get_v1_resource_status_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_devices_status_get_v1_resource_status_get)
|
|
|
|
Fastapi Devices Status Get
|
|
|
|
```
|
|
Get the latest status of a resource/ device.
|
|
|
|
Return:
|
|
latest_status: The latest status of a resource/ device.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `resource_id` (query, required): Resource ID.
|
|
|
|
- `actuator_id` (query, optional): Actuator ID.
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## PUT /v1/resource/status
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/fastapi_devices_status_put_v1_resource_status_put), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/fastapi_devices_status_put_v1_resource_status_put)
|
|
|
|
Fastapi Devices Status Put
|
|
|
|
```
|
|
Update the status of a resource/ device.
|
|
|
|
Return:
|
|
latest_status: The latest status of a resource/ device.
|
|
```
|
|
|
|
**Parameters**:
|
|
|
|
- `resource_id` (query, required): Resource ID.
|
|
|
|
- `actuator_id` (query, optional): Actuator ID.
|
|
|
|
**Request Body**:
|
|
|
|
- `application/json`: {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/components/schemas/PowerMeasurement-Input"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/EnergyMeasurement-Input"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/PPBCPowerProfileStatus-Input"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/OMBCStatus"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/FRBCActuatorStatus"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/FRBCEnergyStatus-Input"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/FRBCStorageStatus"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/FRBCTimerStatus"
|
|
},
|
|
{
|
|
"$ref": "#/components/schemas/DDBCActuatorStatus"
|
|
}
|
|
],
|
|
"description": "Resource Status.",
|
|
"title": "Status"
|
|
}
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
- **422**: Validation Error
|
|
|
|
---
|
|
|
|
## GET /visualization_results.pdf
|
|
|
|
**Links**: [local](http://localhost:8503/docs#/default/get_pdf_visualization_results_pdf_get), [eos](https://petstore3.swagger.io/?url=https://raw.githubusercontent.com/Akkudoktor-EOS/EOS/refs/heads/main/openapi.json#/default/get_pdf_visualization_results_pdf_get)
|
|
|
|
Get Pdf
|
|
|
|
**Responses**:
|
|
|
|
- **200**: Successful Response
|
|
|
|
---
|