Skip to main content
Version: 4.2.0

Replace a configuration validation with given id

PUT 

https://localhost:8900/config/:config_id/validation

Experimental: This API is not stable and might be subject of change.
Replace a configuration validation identified by id with provided value.

Request​

Path Parameters

    config_id stringrequired

    the identifier of the configuration validation to replace.

Body

    id string

    The identifier of the related configuration.

    external_validation boolean

    True, if an external entity should validate a config change. In this case fixcore is emitting a task on the task queue of type validate_config. It expectes a listener to pickup this task and report back, if the configuration is valid or not.

Responses​

The configuration validation.

Schema

    id string

    The identifier of the related configuration.

    external_validation boolean

    True, if an external entity should validate a config change. In this case fixcore is emitting a task on the task queue of type validate_config. It expectes a listener to pickup this task and report back, if the configuration is valid or not.

curl -L -X PUT 'https://localhost:8900/config/:config_id/validation' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"id": "string",
"external_validation": true
}'
Request Collapse all
Base URL
https://localhost:8900
Parameters
— pathrequired
Body
{
  "id": "string",
  "external_validation": true
}