Skip to main content

Get All Client Additional Settings

This operation returns a list of additional settings at the client level.

More Details

Path Parameters
  • clientId string required
Request Body
  • clientProperties object
  • clientProps object
  • registryKeys object[]
  • deleted integer
  • hidden boolean
  • relativepath string
  • keyName string
  • isInheritedFromClientGroup boolean
  • comment string
  • type string
  • value string
  • passwordVal string
  • enabled integer
  • sourceEntity object
  • _type_ integer
Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • errorCode integer
  • entity object
  • clientName string
  • clientId integer
  • _type_ integer
GET /client/:clientid/additionalsettings    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
clientId — path required
Body

{
"clientProperties": {
"clientProps": {
"registryKeys": [
{
"deleted": 0,
"hidden": true,
"relativepath": "string",
"keyName": "string",
"isInheritedFromClientGroup": true,
"comment": "string",
"type": "string",
"value": "string",
"passwordVal": "string",
"enabled": 0,
"sourceEntity": {
"_type_": 0
}
}
]
}
}
}
curl -L -X GET 'https://CommandCenterHostName/commandcenter/api/Client/:clientId/AdditionalSettings' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientProperties": {
"clientProps": {
"registryKeys": [
{
"deleted": 0,
"hidden": true,
"relativepath": "string",
"keyName": "string",
"isInheritedFromClientGroup": true,
"comment": "string",
"type": "string",
"value": "string",
"passwordVal": "string",
"enabled": 0,
"sourceEntity": {
"_type_": 0
}
}
]
}
}
}'