POST
/
v1
/
apps
/
{id}
/
backups
Create Application Backup
curl --request POST \
  --url https://api.vertracloud.app/v1/apps/{id}/backups \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": {
    "id": "backup123",
    "app_id": "v111d4af8cd74272a284831fbae14a8v",
    "author_id": "1085944713435160717",
    "date": "2025-08-14T19:58:00Z",
    "size": "10.24 MB"
  }
}
id
string
required
The ID of the application to create a backup 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
object
Details of the created backup.
{
  "status": "success",
  "response": {
    "id": "backup123",
    "app_id": "v111d4af8cd74272a284831fbae14a8v",
    "author_id": "1085944713435160717",
    "date": "2025-08-14T19:58:00Z",
    "size": "10.24 MB"
  }
}

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.
  • PLAN_RESTRICTED_FEATURE: The user’s plan does not support creating backups.
  • BACKUP_FAILED: The backup creation failed.
{
  "status": "error",
  "code": "UNAUTHORIZED"
}