DELETE /utils/{id}
Delete an item.
Deletes a specific item from the database based on its unique identifier.
Endpoint
DELETE /utils/{id}
Parameters
| Name | Type | Description |
|---|---|---|
| id | uuid.UUID | The unique identifier of the item to be deleted. |
| session | SessionDep | The database session dependency used for persistence operations. |
| current_user | CurrentUser | The currently authenticated user performing the request. |
Response
| Status | Description |
|---|---|
| 200 | The item was successfully deleted. Returns Message. |
| 404 | The item with the specified ID was not found. Returns HTTPException. |
| 403 | The user does not have permission to delete this item. Returns HTTPException. |