Set a system property

System properties behave like global variables for the server.

Request

PUT https://{hostname}:{port}
    /cli/systemConfiguration/propValue?{parameters}
Accept: application/json
Table 1. Request parameters
Parameter Type Required Description
name string true Name of the property
isSecure boolean false Whether the property is secure; the default is the current state of the property, or false if the property is not yet specified
value string false Value of the property
Table 2. Header parameters
Parameter Type Required Description
Accept application/json true  

Example response

{
  "id": "f3bec2ee-3f3e-461f-b5b0-e844efafbdbe",
  "name": "System property 1",
  "value": "value001",
  "secure": false
}

Related CLI command: setSystemProperty.


Feedback