Add Namespace Key Values Using POST

Add Namespace Key Values Using POST

Keys, that do not already have default values set, are Ignored. All the key-name mappings of global settings can be found in the /api/deployment/config/globalsettings/metadata API's description.

Request
URI
POST
https://{api_host}/suite-api/api/deployment/config/properties/{namespace}
COPY
Path Parameters
string
namespace
Required

The namespace of which values will be overridden


Request Body

The set of key/values pairs to override

entries of type(s) application/json
Required
{
    "keyValues": [
        {
            "key": "string",
            "values": [
                "string"
            ]
        }
    ]
}
array of entry
keyValues
Optional

A Collection of KeyValuesEntry objects

Authentication
This operation uses the following authentication methods.
Responses
201

Values are overridden successfully

Operation doesn't return any data structure