Skip to main content

Validate Replication Group Content

Select

SaaS
Customer Managed

Validate virtual machines inside replication group

Request Body
  • client object

    Hypervisor details of replication group

  • id int32
  • name string
  • replicationGroup object

    Replication group details

  • id int32
  • name string
  • vm object[]

    List of virtual machines in replication group

  • GUID string
  • name string
Responses

Success


Schema
  • vm object[]

    List of virtual machines that are already present in different vmGroup of same backupset within same hypervisor client

  • GUID string

    ID of virtual machine

  • name string

    Name of virtual machine

  • vmGroup object

    Details of vmGroup the virtual machine belongs to

  • id int32
  • name string
  • replicationGroup object

    Details of the periodic replication group, if the virtual machine is part of one, and whether the VM group is associated with that replication group

  • id int32
  • name string
POST /v4/replicationgroup/content/validate    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"client": {
"id": 0,
"name": "string"
},
"replicationGroup": {
"id": 0,
"name": "string"
},
"vm": [
{
"GUID": "string",
"name": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/ReplicationGroup/Content/Validate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"client": {
"id": 0,
"name": "string"
},
"replicationGroup": {
"id": 0,
"name": "string"
},
"vm": [
{
"GUID": "string",
"name": "string"
}
]
}'