Skip to content

Get the status of a restore operation

GET
/api/v3/organizations/{organisation}/applications/{application}/environments/{environment}/restores/{restoreId}
curl --request GET \
--url https://dashboard.quantcdn.io/api/v3/organizations/test-org/applications/test-app/environments/staging/restores/restore-abc123 \
--header 'Authorization: Bearer <token>'

Returns the current status and metadata for a restore operation. Poll this endpoint to track progress.

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
staging
restoreId
required
string

The restore operation ID

Example
restore-abc123

Restore operation record

Media typeapplication/json
object
restoreId
string
orgName
string
appName
string
envName
string
backupId
string
status
string
Allowed values: pending in_progress completed failed
startedAt
string format: date-time
completedAt
string format: date-time
nullable
errorMessage
string
nullable
taskArn
string
nullable
ttl
integer
nullable
Example
{
"restoreId": "restore-abc123",
"orgName": "test-org",
"appName": "test-app",
"envName": "staging",
"backupId": "quant-gov-dashboard-staging-2025-09-19T21-50-27-145Z",
"status": "pending"
}