---
title: "Delete a product"
method: DELETE
path: "/products/{id}"
tags: ["Product Catalog"]
---

# Delete a product

`DELETE /products/{id}`

Delete the specified product.

## Path parameters

- `id` string, required

## Response `200`

successful operation

- ProductJson
  - `id` string — System-generated unique identifier for the product
  - `entityIds` string[] — Set of entity IDs associated with this product
  - `name` string, required — Unique name of the product
  - `displayName` string — Display name of the product shown to customers
  - `inUse` boolean — Indicates if the product is currently in use by any plans
  - `description` string — Detailed description of the product
  - `sku` string, required — Stock Keeping Unit (SKU) for the product
  - `productCategoryId` string — ID of the category this product belongs to
  - `productCategory` ProductCategory
    - `productCategoryId` string
    - `entityIds` string[]
    - `name` string
    - `description` string
    - `inUse` boolean
    - `updatedOn` integer
    - `pkId` string, uuid
  - `updatedOn` integer — Timestamp of when the product was last updated (in seconds since epoch)
  - `externalId` string — External identifier for the product, used for integration with other systems
  - `eventObjectId` string

---

[API](https://skmtc.net/dealhub/apis/quote-api.md) · [All operations](https://skmtc.net/dealhub/apis/quote-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dealhub/quote-api/versions/c30f5b9fbfab/schema)
