Skip to main content

Update the commcell group

Select

SaaS
Customer Managed

Used to update commcell associations for a server group

Path Parameters
  • commcellGroupId int32 required

    Id of the commcellGroupId whose details have to be fetched

Request Body
  • name string

    Used to rename commcell group.

  • description string

    Used to update the description of the commcell group.

  • serviceCommcells object[]
  • Commcell object
  • id int32
  • GUID string
  • name string
  • Version string

    Version of the service commcell.

  • activeManagementStatus string

    Possible values: [DISABLED, INPROGRESS, ENABLED, FAILED]

    Returns active management status of the service commcell.

  • serviceCommcellsOperationType string

    Possible values: [NONE, OVERWRITE, ADD, DELETE, CLEAR]

    List operation type

Responses

Success


Schema
  • errorMessage string
  • errorCode int32
PUT /v4/commcellgroup/:commcellgroupid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
commcellGroupId — path required
Body
{
"name": "string",
"description": "string",
"serviceCommcells": [
{
"Commcell": {
"id": 0,
"GUID": "string",
"name": "string"
},
"Version": "string",
"activeManagementStatus": "DISABLED"
}
],
"serviceCommcellsOperationType": "NONE"
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/CommcellGroup/:commcellGroupId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"description": "string",
"serviceCommcells": [
{
"Commcell": {
"id": 0,
"GUID": "string",
"name": "string"
},
"Version": "string",
"activeManagementStatus": "DISABLED"
}
],
"serviceCommcellsOperationType": "NONE"
}'