List the backups
Suggest changes
You can list the backups that have been created for a specific application.
Before you begin
You must have the ID of the app you want to list the backups for. If needed you can use the workflow List the apps to locate the application.
List the backups
Perform the following REST API call.
HTTP method and endpoint
This REST API call uses the following method and endpoint.
HTTP method | Path |
---|---|
GET |
/accounts/{account_id}/k8s/v1/apps/{app_id}/appBackups |
Additional input parameters
In addition to the parameters common with all REST API calls, the following parameters are also used in the curl examples for this step.
Parameter | Type | Required | Description |
---|---|---|---|
app id |
Path |
Yes |
Identifies the managed application owning the listed backups. |
Curl example: Return all backups for the app
curl --request POST \
--location "https://astra.netapp.io/accounts/$ACCOUNT_ID/k8s/v1/apps/$APP_ID/appBackups" \
--include \
--header "Accept: */*" \
--header "Authorization: Bearer $API_TOKEN"
JSON output example
{ "items": [ { "type": "application/astra-appBackup", "version": "1.1", "id": "8edeb4a4-fd8b-4222-a559-1013145b28fc", "name": "backup-david-oct28-1", "bucketID": "a443e58f-59bd-4d45-835a-1bc7813f659a", "snapshotID": "dfe237cb-57b7-4576-af4d-00ba3a8f2828", "state": "completed", "stateUnready": [], "hookState": "success", "totalBytes": 205219132, "bytesDone": 205219132, "percentDone": 100, "metadata": { "labels": [ { "name": "astra.netapp.io/labels/read-only/triggerType", "value": "backup" } ], "creationTimestamp": "2022-10-28T21:58:37Z", "modificationTimestamp": "2022-10-28T21:58:55Z", "createdBy": "a530e865-23e8-4e2e-8020-e92c419a3867" } } ], "metadata": {} }