Updates
Manage system updates. This module allows checking, downloading, and applying new updates.
Available Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /api/updates |
List available updates |
| POST | /api/updates/download |
Download update |
| POST | /api/updates/apply |
Apply update |
Example Request
curl -X GET "https://example.com/api/updates" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"records": []
}
Errors
| Code | Description |
|---|---|
| 401 | Invalid token |
| 403 | Access denied |