Backup / Restore
GET/api/config/{kind}/backups
curl -s -X GET "https://alphieui.com/api/config/{kind}/backups" \
-H "Authorization: Bearer $TOKEN"
POST/api/config/{kind}/restore
curl -s -X POST "https://alphieui.com/api/config/{kind}/restore" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/db/backup
curl -s -X POST "https://alphieui.com/api/db/backup" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/db/backups
curl -s -X GET "https://alphieui.com/api/db/backups" \
-H "Authorization: Bearer $TOKEN"
Notes
- All endpoints require authentication unless noted otherwise.
- Most write operations accept and return JSON.
- Timestamps are returned in server-local time strings for UI convenience.
- Long-running operations (runs/pipelines) expose
/file-logand/file-log/tailfor streaming logs.