Skip to main content

Create Backup Location

Select

SaaS
Customer Managed

Create a new backup location

Path Parameters
  • storagePoolId int32 required

    Id of the disk storage to update

Request Body
  • mediaAgent object required
  • id int32
  • name string
  • backupLocation string required

    The mount path on the media agent where the data is to be backed up.

  • credentials object
  • name string

    username to access the network path

  • password string

    password to access the network path

  • savedCredentials object
  • id int32
  • name string
Responses

Success


Schema
  • id int32
  • name string
POST /v4/storage/disk/:storagepoolid/backuplocation    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
storagePoolId — path required
Body
{
"mediaAgent": {
"id": 0,
"name": "string"
},
"backupLocation": "string",
"credentials": {
"name": "string",
"password": "string"
},
"savedCredentials": {
"id": 0,
"name": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Storage/Disk/:storagePoolId/BackupLocation' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"mediaAgent": {
"id": 0,
"name": "string"
},
"backupLocation": "string",
"credentials": {
"name": "string",
"password": "string"
},
"savedCredentials": {
"id": 0,
"name": "string"
}
}'