Skip to main content
GET
/
v3
/
apps
/
{app_id}
/
backups
Get List of Application Backups
curl --request GET \
  --url https://api.dscloud.pt/v3/apps/{app_id}/backups \
  --header 'Authorization: <authorization>'
{
  "status": "success",
  "response": [
     {
        "name": "Backup at 2024-12-07 22:07:11",
        "size": 81865653,
        "modified": "2024-12-07T22:07:20+01:00",
        "key": "85592d2b15ff867407964790224dcbb3a95ce82b",
        "created_at": "2024-12-07T22:07:11+01:00",
        "is_successful": true
     },
     {
        "name": "Backup at 2024-12-07 22:28:26",
        "size": 46478659,
        "modified": "2024-12-07T22:28:26+01:00",
        "key": "803d975bd5726c1f5771221fc59ec0f97e45fa12",
        "created_at": "2024-12-07T22:28:48+01:00",
        "is_successful": true
     },
     {
        "name": "Backup at 2024-12-07 22:48:16",
        "size": 81865653,
        "modified": "2024-12-07T22:48:25+01:00",
        "key": "85592d2b15ff867407964790224dcbb3a95ce82b",
        "created_at": "2024-12-07T22:48:16+01:00",
        "is_successful": true
     }
  ]
}
Exclusive route for Silver and higher plans, such as Titanium and Essential.
Authorization
string
required
The API key for your account. You can find this in your account settings.
app_id
string
required
The ID of the application. You can find this in the URL of your application’s dashboard.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
object
The contents of the response.
{
  "status": "success",
  "response": [
     {
        "name": "Backup at 2024-12-07 22:07:11",
        "size": 81865653,
        "modified": "2024-12-07T22:07:20+01:00",
        "key": "85592d2b15ff867407964790224dcbb3a95ce82b",
        "created_at": "2024-12-07T22:07:11+01:00",
        "is_successful": true
     },
     {
        "name": "Backup at 2024-12-07 22:28:26",
        "size": 46478659,
        "modified": "2024-12-07T22:28:26+01:00",
        "key": "803d975bd5726c1f5771221fc59ec0f97e45fa12",
        "created_at": "2024-12-07T22:28:48+01:00",
        "is_successful": true
     },
     {
        "name": "Backup at 2024-12-07 22:48:16",
        "size": 81865653,
        "modified": "2024-12-07T22:48:25+01:00",
        "key": "85592d2b15ff867407964790224dcbb3a95ce82b",
        "created_at": "2024-12-07T22:48:16+01:00",
        "is_successful": true
     }
  ]
}
The format of the URL to download the desired backup is: https://backups.dscloud.pt/{accountID}\_{name}.zip?{key}