get https://api.compose.io/2016-07/deployments//backups
Fetch information about all the backups available for a deployment.
This endpoint returns all backups associated with the deployment given in the parameters. It returns an _embedded
object with a backups
key whose value is an array of backup objects. The key/values of backup objects are detailed below.
Returned JSON
backups object key | Description |
---|---|
id | The backup id, used when addressing a specific backup in the API. |
deployment_id | The ID of the deployment that is associated with the backup. |
name | Name of the backup - includes the time that the backup was initiated. |
type | The type of backup: daily, weekly, monthly, and on demand. |
status | The status of the backup (whether or not the backup has finished being created). |
is_downloadable | Whether or not this backup can be downloaded. Can be true or false. |
is_restorable | Whether or not this backup can be used to restore directly into a new deployment. Can be true or false. |
created_at | The time the backup was completed. |