Skip to main content

DELETE /utils/{id}

Delete an item.

Deletes a specific item from the database based on its unique identifier.

Endpoint

DELETE /utils/{id}

Parameters

NameTypeDescription
iduuid.UUIDThe unique identifier of the item to be deleted.
sessionSessionDepThe database session dependency used for persistence operations.
current_userCurrentUserThe currently authenticated user performing the request.

Response

StatusDescription
200The item was successfully deleted. Returns Message.
404The item with the specified ID was not found. Returns HTTPException.
403The user does not have permission to delete this item. Returns HTTPException.