Skip to main content

Validate Restore

Select

SaaS
Customer Managed

Validate Restore

Path Parameters
  • vmGuid string required
Request Body
  • fromTime string

    Restore window UTC from time. Valid Formats: yyyy-MM-ddTHH:mm:ss or yyyy-MM-ddTHH:mm:sszzz or yyyy-MM-dd

  • toTime string

    Restore window UTC to time. Valid Formats: yyyy-MM-ddTHH:mm:ss or yyyy-MM-ddTHH:mm:sszzz or yyyy-MM-dd

  • backupSource int32

    Backup source information from where you want to restore. 0 (Automatic), 1 (Snap Copy), 2 (Primary), 3 to N (Aux Copy)

  • accessNode object
  • id int32
  • name string
  • accessNodeGroup object
  • id int32
  • name string
  • notifyOnJobCompletion boolean

    Default value: false

    Enable email notificaiton for job status. Defaults to false

Responses

OK


Schema
  • taskId int32
  • jobIds string[]

    JobIds for the immediate run request

POST /vm/:vmguid/restore/validate    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
vmGuid — path required
Body
{
"fromTime": "2024-04-10T14:00:00",
"toTime": "2024-04-11T14:00:00",
"backupSource": 2,
"accessNode": {
"id": 0,
"name": "string"
},
"accessNodeGroup": {
"id": 0,
"name": "string"
},
"notifyOnJobCompletion": false
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/VM/:vmGuid/Restore/Validate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"fromTime": "2024-04-10T14:00:00",
"toTime": "2024-04-11T14:00:00",
"backupSource": 2,
"accessNode": {
"id": 0,
"name": "string"
},
"accessNodeGroup": {
"id": 0,
"name": "string"
},
"notifyOnJobCompletion": false
}'