Skip to main content

Create a Commcell Group

Select

SaaS
Customer Managed

Create Commcell group

Request Body
  • name string

    Used to set the name of the commcell group.

  • description string

    Used to set 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.

Responses

Success


Schema
  • commcellGroupInfo object
  • id int32
  • GUID string
  • name string
POST /v4/commcellgroup    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"name": "string",
"description": "string",
"serviceCommcells": [
{
"Commcell": {
"id": 0,
"GUID": "string",
"name": "string"
},
"Version": "string",
"activeManagementStatus": "DISABLED"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/CommcellGroup' \
-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"
}
]
}'