V2 configuration API

The configuration endpoint allows a selection of the configuration parameters of a REST server to be updated without restarting the server.

A PUT request at /v2/configuration can be used to update a selection of the configuration parameters of the REST server without restarting the server. The body of the PUT request is YAML data which contains the new values for the chosen parameters. The structure of the YAML data follows the structure of the configuration file. The following parameters may be changed dynamically (in JSON Pointer notation):
  • /rest/logging/level
  • /rest/resources/flowThreads
  • /rest/resources/mapThreads
For example, to change the logging level to ALL, add the following YAML content in the body of the PUT request:

rest:
  logging:
    level: “ALL”