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.
38 lines
688 B
Markdown
38 lines
688 B
Markdown
# Update Username
|
|
|
|
Update the authenticated user's username.
|
|
|
|
**Endpoint**: `PUT /api/auth/username`
|
|
**Auth**: Required
|
|
**Content-Type**: `application/json`
|
|
|
|
## Request Body
|
|
|
|
| Field | Type | Required | Description |
|
|
|--------|------|-----------|-------------|
|
|
| username | string | Yes | New username (min 3 chars, alphanumeric and underscore only) |
|
|
|
|
### Example Request
|
|
|
|
```json
|
|
{
|
|
"username": "new_username"
|
|
}
|
|
```
|
|
|
|
## Response (200 OK)
|
|
|
|
```json
|
|
{
|
|
"message": "Username updated successfully"
|
|
}
|
|
```
|
|
|
|
## Error Responses
|
|
|
|
| Code | Description |
|
|
|------|-------------|
|
|
| 400 | Invalid username format |
|
|
| 401 | Invalid or expired token |
|
|
| 409 | Username already taken by another user |
|