Skip to main content

Update Client Group Properties (Deprecated)

Select

SaaS
Customer Managed

deprecated

This endpoint has been deprecated and may be removed in future versions of the API.

This operation updates the properties associated with a client computer group.

More Details

Path Parameters
  • clientGroupId string required
Request Body required
  • clientGroupDetail object
  • claQuota int32
  • clientGroup object
  • clientGroupName string
  • description string
  • clientGroupOperationType int32
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /clientgroup/:clientgroupid    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"clientGroupDetail": {
"claQuota": 8,
"clientGroup": {
"clientGroupName": "{{clientGroupName}}"
},
"description": "client computer group description modified"
},
"clientGroupOperationType": 2
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/ClientGroup/:clientGroupId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientGroupDetail": {
"claQuota": 8,
"clientGroup": {
"clientGroupName": "{{clientGroupName}}"
},
"description": "client computer group description modified"
},
"clientGroupOperationType": 2
}'