It seems like your browser didn't download the required fonts. Please revise your security settings and try again.
Barracuda Intronis Backup
formerly ECHOplatform

GET List of Backup Set Drives with Restorable Revisions

  • Last updated on

This API allows you to GET List of Backup Set Drives with Restorable Revisions

Input Parameters

Backup set id, obtained via the Backup Set List API call.

{

 "id": 17

}

Output Parameters

The following table provides the parameters and descriptions.

Parameter

Description

type

Type of record. Drive is the only possible value for this API.

Id

Integer value. ID of the drive record. Use this parameter for subsequent browse requests, for the next level (browse by Folder or File), or for sending it over to the restore API to restore this record.

name

String value. Display name of volume.

path

String. Path of the drive.

hasChildren

Boolean. Indicates whether a subsequent browse at the Folder or File level is possible.

Example

Array of drives that contain restorable revisions, with the following structure:

{

    "items": [

        {

            "type": "Drive",

            "id": 30,

            "name": "Windows Volume (C:)",

            "path": "C:\\",

            "hasChildren": true

        }

    ]

}

Example GET

GET /v2/accounts/{accountUsername}/computers/{subaccountId}/restore/filesandfolders/browse/backupset/{backupsetId}

Example Output

{

  "data": {

    "items": [

      {

        "type": "Drive",

        "id": 12,

        "name": "New Volume (F:)",

        "path": "F:\\",

        "hasChildren": true,

        "backupTime": "2020-01-01T00:00:00"

      }

    ]

  }

}