Skip to main content

Modify Entity Settings

Modify entity settings used to change default behaviour for linked entity like servers or server groups

Request Body
  • entitySettings object[]
Responses

Success


Schema
  • errorMessage string
  • errorCode int32
PUT /v4/entitysettings    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/webconsole/api
token
Body

{
"entitySettings": [
{
"name": "string",
"category": "string",
"type": "Integer",
"newValue": "string",
"comment": "string",
"reset": true,
"entity": {
"id": 0,
"type": "string"
}
}
]
}
curl -L -X PUT 'https://localhost/webconsole/api/V4/EntitySettings' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"entitySettings": [
{
"name": "string",
"category": "string",
"type": "Integer",
"newValue": "string",
"comment": "string",
"reset": true,
"entity": {
"id": 0,
"type": "string"
}
}
]
}'