Skip to main content

Enable / Disable Ransomware Protection

Select

SaaS
Customer Managed

This operation enables or disables Ransomware protection on a given media agent.

Path Parameters
  • clientId string required
Request Body required
  • clientProperties object required
  • clientProps object required
  • dlpPropertise object required
  • dlpEnableAutomaticDecryption boolean required
  • enableDLP boolean required
Responses

OK


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

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"clientProperties": {
"clientProps": {
"dlpPropertise": {
"dlpEnableAutomaticDecryption": true,
"enableDLP": true
}
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Client/:clientId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientProperties": {
"clientProps": {
"dlpPropertise": {
"dlpEnableAutomaticDecryption": true,
"enableDLP": true
}
}
}
}'