Returns metadata for every backup currently stored under the authenticated system's prefix. Cross-tenant access is impossible — the listing scope is server-derived from the credentials.
GET
/systems/backups
curl \
--request GET 'https://collect.your-domain.com/api/systems/backups' \
--user "username:password"
Response examples (200)
{
"code": 200,
"data": {
"backups": [
{
"id": "01934fab-bc33-7890-a1b2-c3d4e5f6a7b8.tar.gz",
"filename": "daily-backup-2026-04-12.tar.gz",
"size": 82944000,
"sha256": "3a7bd3e2360a3d29eea436fcfb7e44c735d117c42d1c1835420b6b9942dd4f1b",
"mimetype": "application/gzip",
"uploaded_at": "2026-04-12T02:15:00Z"
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}