# ImportProductsTobaccoController_DeleteProductTobacco

Deletes a tobacco product.

`DELETE /api/v1/ImportProductsTobacco/DeleteProductTobacco`

**API:** Excise Platform API
**Tag:** ImportProductsTobaccoController
**API Version:** v1
**Base URL:** https://excise.avalara.com
**Accepts:** `text/plain`
**Authentication:** Basic (username + license key)

Source: https://developer.avalara.com/products/excise/api/methods/ImportProductsTobaccoController/ImportProductsTobaccoController_DeleteProductTobacco/

## Description

Permanently deletes a tobacco product by its unique identifier. The product must belong to the
current master company and must not be locked.

## Parameters

| Name | Type | In | Required | Description |
|---|---|---|---|---|
| `x-company-id` | integer | header | Yes | Company ID that owns the data. |
| `X-Avalara-Client` | string | header | No | Identifies the software you are using to call this API. For more information on the client header, see Client Headers. |
| `ProductTobaccoId` | integer | query | Yes | The unique identifier of the tobacco product to delete. |

## Responses

| Status | Description | Schema |
|---|---|---|
| 200 | Returns a message indicating the result of the delete operation. |  |
| 400 | The product was not found, does not belong to the current company, or is locked. |  |

## Example Request

```bash
curl -X DELETE "https://excise.avalara.com/api/v1/ImportProductsTobacco/DeleteProductTobacco" \
  -H "Authorization: Basic <credentials>" \
  -H "Accept: application/json"
```