Update Properties

Update Properties

Updates the values and descriptions of the provided properties

Request
URI
POST
https://{api_host}/vco/api/server-configuration/system-properties
COPY
Request Body
WsUpdateSystemPropertiesRequest of type(s) application/json
Required

Show optional properties

{
    "properties": [
        {
            "key": "string",
            "value": "string"
        }
    ]
}
{
    "properties": [
        {
            "key": "string",
            "value": "string",
            "description": "string",
            "defaultValue": "string"
        }
    ]
}
array of object
properties
Required

properties

Authentication
This operation uses the following authentication methods.
Responses
200

The properties have been retrieved

Operation doesn't return any data structure

400

The model is invalid

Operation doesn't return any data structure

401

The user is not authenticated

Operation doesn't return any data structure

403

The user is not authorized

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"properties":["object"]}' https://{api_host}/vco/api/server-configuration/system-properties