Clean up API documentation files by removing Phase X references: Remove 'API Explorer will be inserted here in Phase X' placeholders from: - 70+ API endpoint documentation files - Authentication endpoints (login, logout, register, refresh) - User endpoints (profile, settings, password) - Device endpoints (registration, sync, shelves) - Library endpoints (CRUD, folders, visibility) - Media endpoints (items, progress, highlights, notes) - Admin endpoints (users, analytics) - Sync endpoints (Kobo, KOReader) - OPDS endpoints - Scanner endpoints - Queue endpoints These placeholders were from planning documents and have no meaning to API consumers. The documentation is now clean and ready for use.
1.0 KiB
1.0 KiB
Update User Max Devices
Update the maximum number of devices a user can register (admin only).
Endpoint: PUT /api/auth/users/:id/max-devices
Auth: Required (Admin only)
Content-Type: application/json
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string (UUID) | Yes | User UUID |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| max_devices | integer | Yes | Maximum number of devices (1-100) |
Example Request
{
"max_devices": 15
}
Response (200 OK)
{
"id": "uuid",
"email": "user@example.com",
"username": "johndoe",
"max_devices": 15,
"active_devices": 3,
"updated_at": "2026-02-08T11:00:00Z"
}
Error Responses
| Code | Description |
|---|---|
| 400 | Invalid max_devices value (must be 1-100) |
| 401 | Invalid or expired token |
| 403 | User does not have admin privileges |
| 404 | User not found |