API
Backups
Retrieve backup

Retrieve a Backup

  • Name
    get
    Type
    /v1/backups/:id
    Description

    You can get information about a specific backup by making a GET request to the backup's id endpoint.

Request

Example

cURL
curl -X GET "https://api.simplystack.com/v1/baskups/1" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0"

Response

JSON object with key named backup, the JSON object will contain the following identifiers associated with the backup:

Attributes

See backup model

Example

json
{
  "backup": {
    "id": 1,
    "created_at": "2018-02-13T08:33:25.371494Z",
    "task": null,
    "disk_size": 20,
    "size_gigabytes": 1.2,
    "stacklet": {...}
  }
}