Skip to main content

Clone the backupdestination of the plan

Select

SaaS
Customer Managed

Clone backupDestination of the plan

Path Parameters
  • planId string required

    Id of the plan to modify

  • BackupDestinationId string required

    Id of the backupDestination to be cloned

Request Body
  • backupDestinationName string required

    name of the backupDestination to create from clone.

  • storage object required
  • id int32
  • name string
  • cloneFromBackupDestination object required
  • id int32
  • name string
Responses

Success


Schema
  • planBackupDestination object[]

    List of destinations effected or created

  • id int32
  • name string
  • failedDestinations string[]

    List of destinations for which the operation failed

  • error object
  • errorMessage string
  • errorCode int32
POST /v5/archiveplan/:planid/backupdestination/:backupdestinationid/clone    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
planId — path required
BackupDestinationId — path required
Body
{
"backupDestinationName": "string",
"storage": {
"id": 0,
"name": "string"
},
"cloneFromBackupDestination": {
"id": 0,
"name": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V5/ArchivePlan/:planId/BackupDestination/:BackupDestinationId/Clone' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"backupDestinationName": "string",
"storage": {
"id": 0,
"name": "string"
},
"cloneFromBackupDestination": {
"id": 0,
"name": "string"
}
}'