Add Backup Resource Weekly Auto Backup Preset

To add a weekly auto backup preset, use the following request:

1
2
POST /settings/backups/resources/:resource_id/auto_backup_presets.xml
POST /settings/backups/resources/:resource_id/auto_backup_presets.json

XML Request Example

1
curl -i -X POST -H 'Accept: application/xml' -H 'Content-type: application/xml' -u account_email:API_key --url http://onapp.test/settings/backups/resources/13/auto_backup_presets.xml -d '<auto_backup_preset><resource_id type="integer">13</resource_id><period>weekly</period><days_to_run_on><fixnum type="integer">1</fixnum><fixnum type="integer">2</fixnum></days_to_run_on><max_recovery_points type="integer">1</max_recovery_points><start_time>2000-01-01T11:48:00Z</start_time></auto_backup_preset>'

JSON Request Example

1
curl -i -X POST -H 'Accept: application/json' -H 'Content-type: application/json' -u account_email:API_key --url http://onapp.test/settings/backups/resources/13/auto_backup_presets.json -d '{"auto_backup_preset":{"resource_id": 11,"period": "weekly","days_to_run_on": [1,2,3],"max_recovery_points": 1,"start_time": "2000-01-01T11:48:00Z"}}'

Where:

  • auto_backup_preset — the array of auto backup preset parameters.
    • resource_id* — the ID of the backup resource for which the auto backup preset is configured.
    • period* — the period for the auto backup preset that is weekly.
    • days_to_run_on* — the array of days when the auto backup preset is run. For example, set 0 to run the auto backup preset on Sunday, 1 — Monday, 2 — Tuesday, 3 — Wednesday, 4 — Thursday, 5 — Friday, or 6 — Saturday.
    • max_recovery_points — the maximum number of recovery points created for VS.
    • start_time — the start time for running the auto backup preset in the [YYYY][MM][DD]T[hh][mm][ss] format.