Skip to main content

Update Commcell Activity Control

Select

SaaS
Customer Managed

This operation is used to update commcell activity control options.

Request Body
  • commCellInfo object required
  • commCellActivityControlInfo object required
  • activityControlOptions object[] required
  • activityType integer
    • Backup: 1
    • Restore: 2
    • Aux Copy: 4
    • Data Aging: 16
    • Scheduler: 256
    • DDB Activity: 2048
    • Data Verification: 8192
  • enableAfterADelay boolean

    Enable a time delay to auto resume (then use the dateTime section - if not using this please delete that section)- false : Do not auto resume

  • enableActivityType boolean
  • dateTime object
  • TimeZoneID integer

    The time zone of the time specified above. List of IDs and their timezones are available here

  • time integer

    time in epoch format of when the activity must get auto enabled

Responses

OK


Schema
  • processinginstructioninfo object
  • attributes object[]
  • name string
  • value string
  • response object[]
  • errorCode integer
PUT /commcell/properties    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"commCellInfo": {
"commCellActivityControlInfo": {
"activityControlOptions": [
{
"activityType": 0,
"enableAfterADelay": true,
"enableActivityType": true,
"dateTime": {
"TimeZoneID": 0,
"time": 0
}
}
]
}
}
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/commcell/properties' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"commCellInfo": {
"commCellActivityControlInfo": {
"activityControlOptions": [
{
"activityType": 0,
"enableAfterADelay": true,
"enableActivityType": true,
"dateTime": {
"TimeZoneID": 0,
"time": 0
}
}
]
}
}
}'