Skip to content

bhatti volume backup-list

List backups for a volume.

bhatti volume backup-list <volume-name>

Lists backups recorded server-side for the given volume. The backups themselves live in S3; this command shows the metadata (ID, size, creation time) so you can pick one to restore.

If there are no backups, prints no backups.

Terminal window
bhatti volume backup-list workspace
ID SIZE CREATED
bk_a1b2c3d4 4998 MB 2026-04-30T03:00:14Z
bk_e5f6g7h8 5021 MB 2026-04-29T03:00:11Z
bk_i9j0k1l2 4892 MB 2026-04-28T03:00:09Z
Terminal window
# Latest backup ID
bhatti volume backup-list workspace --json | jq -r 'sort_by(.created_at) | last | .id'

This command takes only global flags. See Global flags for --url, --token, --json, --timing, --data-dir.