> ## Documentation Index
> Fetch the complete documentation index at: https://docs.timbrix.mx/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Product

Permanently deletes a product or service from the catalog. This action cannot be undone.

## Authentication

Requires a valid Bearer token. The authenticated user must be an **owner** or **admin** of the organization.

## Path Parameters

| Parameter        | Type          | Required | Description     |
| ---------------- | ------------- | -------- | --------------- |
| `organizationId` | string (UUID) | Yes      | Organization ID |
| `productId`      | string (UUID) | Yes      | Product ID      |

## Example Request

```bash theme={null}
curl -X DELETE http://localhost:3001/api/organizations/550e8400-e29b-41d4-a716-446655440000/products/590ce6c56d04f840aa8438af \
  -H "Authorization: Bearer <your_token>"
```

## Response

Returns `204 No Content` on success.

## Common Errors

### 404 Not Found

Product does not exist or does not belong to the organization.

```json theme={null}
{
  "statusCode": 404,
  "message": "Product not found"
}
```
