GET
/
v1
/
apps
/
{id}
/
backups
Application Backups
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{id}/backups \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": [
    {
      "id": "backup123",
      "app_id": "v111d4af8cd74272a284831fbae14a8v",
      "author_id": "1085944713435160717",
      "size": "10.24 MB",
      "date": "2025-08-14T19:58:00Z"
    },
    {
      "id": "backup456",
      "app_id": "v111d4af8cd74272a284831fbae14a8v",
      "author_id": "1085944713435160717",
      "size": "15.36 MB",
      "date": "2025-08-13T12:00:00Z"
    }
  ]
}
id
string
required
The ID of the application to retrieve backups for. If the application belongs to an organization, include the organization ID in the format appId-orgId.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
array
An array of backup objects for the application.
{
  "status": "success",
  "response": [
    {
      "id": "backup123",
      "app_id": "v111d4af8cd74272a284831fbae14a8v",
      "author_id": "1085944713435160717",
      "size": "10.24 MB",
      "date": "2025-08-14T19:58:00Z"
    },
    {
      "id": "backup456",
      "app_id": "v111d4af8cd74272a284831fbae14a8v",
      "author_id": "1085944713435160717",
      "size": "15.36 MB",
      "date": "2025-08-13T12:00:00Z"
    }
  ]
}

Error Responses

status
string
Indicates whether the call was successful. error if not successful.
code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or lacks sufficient permissions.
  • FORBIDDEN: The user does not have permission to access the application.
  • APP_NOT_FOUND: The specified application does not exist.
{
  "status": "error",
  "code": "UNAUTHORIZED"
}