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

Barracuda Campus is getting an upgrade!

We are excited to announce that Barracuda Campus will migrate to a new platform around mid-January 2026. Please see the announcement on the Campus Dashboard to find out more.

Update Files and Folders Backup Set

  • Last updated on

This section provides the following topics:

  • Input Parameters
  • Parameter Descriptions

Input Parameters

The id of the action is required for this operation.

Request Format

PUT /v2/accounts/{accountUserName}/computers/{subaccountNumber}/backupsets/{backupSetId}

Request Example

PUT /v2/accounts/test_acc/computers/0000/backupsets/235

{

  "settings": {

    "enableSnapshotMode": true,

    "cancelBackupIfSnapshotFails": false,

    "retryFailedFiles": true,

    "retryLockedFiles": true,

    "enableArchiveBit": false,

    "wildCardInclusions": [],

    "tempFolderPath": "C:\\Windows\\TEMP\\BackupAgent"

  },

  "files": [

    "c:\\folder\\file1.txt",

    "c:\\folder\\file2.txt"

  ],

  "name": "Update BackupSet Files",

  "type": "Files",

  "selection": [

    "C:\\"

  ],

  "archivingRules": {

    "diskUsageRules": [],

    "ageRules": [

      {

        "days": 30,

        "minimumRevisions": 10,

        "filters": [

          "*.*"

        ]

      }

    ],

    "versionsRules": [],

    "dateRangeRules": []

  },

  "schedule": [

    {

      "type": "manual"

    }

  ]

}

To clear the wildCardInclusions setting, send an empty string as the array value.

Example:

"wildCardInclusions": [ “” ]

Output Data

Online operation

Response status: 200 Accepted (for online operation)

Response Example

{

  "data": {

    "success": true

  }

}


Offline operation

Response status: 202 Accepted (for offline operation)

Response Example

{

  "data": {

    "id": 5

  }

}