Get list of restore files of a backup schedule


This request returns a list of restore / backup files that are genereated by the backup schedule.
A file can be used to restore a database / tenant.
Use the parameters to get restore files of a specific restore mode.

Resource

GET /backupschedules/<OID>/restore_files

Parameters

Name Type Description

mode

[String]

select the backup mode (single, split, essential, remaining), this will only return the available files for this backup mode

Payload

None

Response

Object Response <[String]>.

Contains a list of restore files.

Context

Authorization

Master

Errors

Example

Request
GET https://xelion.nl/api/v1/master/backupschedules/1757883/restore_files?mode=single
Response
{
  "object": [
    "xps6t_pbx25_2017-08-08_01-04-54.pgdmp",
    "xps6t_pbx25_2018-08-08_01-04-54.pgdmp"
  ],
  "links": [
    {
      "rel": "self",
      "href": "http://www.xelion.nl/api/v1/master/backupschedules/1757883/restore_files",
      "method": "GET"
    }
  ]
}