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.

Create Backup Set on Multiple Subaccounts

  • Last updated on

Create Backup Set on multiple subaccounts creates a backup set on multiple computers listed under an account.

Example

POST /v2/accounts/username/backupsets

{

    "computers": ["0000", "0001"],

    "name": "Backupset test1",

    "type": "Disk_Image",

    "selection": ["C:"]

}

Response

{

    "data": {

        "id": 9

    }

}

Full Request Example

curl -X POST "https://site url/accounts/username/backupsets" -H "accept: application/json" -H "Authorization: Oauth 5dc02bb64881753b4c37398e20c8f461" -H "Content-Type: application/json" -d "{ \"name\": \"Backupset test1\", \"type\": \"PIS\", \"selection\": [ \"C:\" ], \"computers\": [ \"0000\", \"0001\" ]}"