Skip to content

Generate a download URL for a backup

GET
/api/v3/organizations/{organisation}/applications/{application}/environments/{environment}/backups/{type}/{backupId}/download
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/test-org/applications/test-app/environments/test-env/backups/database/example/download \
--header 'Authorization: Bearer <token>'
organisation
required
string

The organisation ID

Example
test-org
application
required
string

The application ID

Example
test-app
environment
required
string

The environment ID

Example
test-env
type
required
string
Allowed values: database filesystem

The backup type

backupId
required
string

The backup ID

Download URL generated successfully

Media typeapplication/json
object
downloadUrl

Pre-signed S3 URL for download

string
expiresAt

URL expiration time

string format: date-time
filename

Suggested filename for download

string
Examplegenerated
{
"downloadUrl": "example",
"expiresAt": "2026-04-15T12:00:00Z",
"filename": "example"
}