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 file System Drives with Restorable Revisions

  • Last updated on

This API allows you to GET List of file System Drives with Restorable Revisions.

Input Parameters

None.

Output Parameters

The following table provides the parameters and descriptions.

Parameter

Description

type

Type of record for this API call, only Drive is possible.

id

Integer value. ID of the record. Use this parameter for subsequent browse requests, for the next level.

name

String value. Display name of the drive, and/or drive letter.

hasChildren

Boolean. Indicates whether a subsequent browse at next level is possible.

Example

Array of drives containing restorable revisions, with the following structure:

{

    "items": [

        {

            "type": "Drive",

            "id": 72,

            "name": "F:",

            "hasChildren": true

        },

        {

            "type": "Drive",

            "id": 30,

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

            "hasChildren": true

        }

    ]

}

Example GET

GET /v2/accounts/{accountUsername}/computers/{subaccountId}/restore/filesandfolders/browse/filesystem/list

Example Output

{

  "data": {

    "items": [

      {

        "type": "Drive",

        "id": 10,

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

        "path": "",

        "hasChildren": true,

        "backupTime": "0001-01-01T00:00:00"

      }

    ]

  }

}