Comment on page
⚙
Settings
This page provides a description of the available API routes for managing settings.
The API offers a range of modules and extensions that require configuration. In order to faciliate the process of module configuration, the API provides methods for accessing and managing stored configurations. These configurations are represented by a
Settings
class.Every module has its unique identifier, which is used as key when accessing given configuration section.
get
http://{server-address}
/settings
Get settings
get
http://{server-address}
/settings/{key}
Get settings section
put
http://{server-address}
/settings/{key}
Create or update settings section
patch
http://{server-address}
/settings
Partially update settings section
delete
http://{server-address}
/settings/{key}
Delete settings section
Last modified 3mo ago