Get all available settings
Select
SaaS
Customer Managed
List all available settings that can be added to entity or global
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
additionalSettings object[]
name stringName of the setting
displayLabel stringDisplay name of the setting
description stringDescription of the setting
defaultValue stringDefault value of the setting
type stringPossible values: [
Integer
,String
,Boolean
,Multi String
]Data type of the value
isRestartRequired booleanSpecifies if it is required to restart the services for any changes to take effect
minValue int32Specifies minimum value that can be set to modify specified global setting. It is only returned if the setting type is Integer
maxValue int64Maximum supported value
category stringCategory of the setting
{
"additionalSettings": [
{
"name": "string",
"displayLabel": "string",
"description": "string",
"defaultValue": "string",
"type": "Integer",
"isRestartRequired": true,
"minValue": 0,
"maxValue": 0,
"category": "string"
}
]
}
Loading...