Skip to main content

Edit CSLiveSync Settings

Select

SaaS
Customer Managed

API Endpoint for CS Livesync Operations \n\n Check the payload examples for multiple operations related to CSLiveSync

Header Parameters
  • Accept string required
Request Body
  • csFailoverConfigInfo object
  • configStatus integer

    Set this to 1 to enable CS LiveSync

  • isAutomaticFailoverEnabled boolean

    True if automatic failover to be enabled

  • backupStoragePolicy object
  • storagePolicyName string
  • failoverScheduleDetails object
  • liveSyncRPO integer

    Time interval gap between two livesync RPO Jobs. Specify in Minutes

  • defaultRecoveryMode integer
  • networkInfo object
  • externalGrpManualConfig boolean
  • connectivityMode integer
  • proxyConnectivityOption integer
  • proxyEntity object
  • clientGroupName string
  • dnsUpdateInfo object
  • specifyDNSServers boolean
  • dnsScriptPath string
  • updateDNSInfoByScript boolean
Responses

OK


Schema
  • refreshClientGroupNode boolean
POST /commserv/failover    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"csFailoverConfigInfo": {
"configStatus": 0,
"isAutomaticFailoverEnabled": true,
"backupStoragePolicy": {
"storagePolicyName": "string"
},
"failoverScheduleDetails": {
"liveSyncRPO": 0,
"defaultRecoveryMode": 0
},
"networkInfo": {
"externalGrpManualConfig": true,
"connectivityMode": 0,
"proxyConnectivityOption": 0,
"proxyEntity": {
"clientGroupName": "string"
},
"dnsUpdateInfo": {
"specifyDNSServers": true,
"dnsScriptPath": "string",
"updateDNSInfoByScript": true
}
}
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/CommServ/Failover' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"csFailoverConfigInfo": {
"configStatus": 0,
"isAutomaticFailoverEnabled": true,
"backupStoragePolicy": {
"storagePolicyName": "string"
},
"failoverScheduleDetails": {
"liveSyncRPO": 0,
"defaultRecoveryMode": 0
},
"networkInfo": {
"externalGrpManualConfig": true,
"connectivityMode": 0,
"proxyConnectivityOption": 0,
"proxyEntity": {
"clientGroupName": "string"
},
"dnsUpdateInfo": {
"specifyDNSServers": true,
"dnsScriptPath": "string",
"updateDNSInfoByScript": true
}
}
}
}'