# Delete Library Folder Delete a folder from a library. **Endpoint**: `DELETE /api/libraries/:id/folders` **Auth**: Required (Admin only) **Content-Type**: `application/json` ## Path Parameters | Parameter | Type | Required | Description | |-----------|------|-----------|-------------| | id | string (UUID) | Yes | Library UUID | ## Request Body | Field | Type | Required | Description | |--------|------|-----------|-------------| | folder_path | string | Yes | Absolute path to the folder to delete | ### Example Request ```json { "folder_path": "/path/to/library/folder" } ``` ## Response (204 No Content) Library folder deleted successfully. ## Error Responses | Code | Description | |------|-------------| | 400 | Invalid request data | | 401 | Invalid or expired token | | 403 | User does not have admin privileges | | 404 | Library or folder not found | ## Try It Out