Delete a product 

Products
Products
Delete a product

Delete a product. Deleting a product is only possible if it has no prices associated with it. Additionally, deleting a product with type=good is only possible if it has no SKUs associated with it.

Parameters

No parameters.

Returns

Returns a deleted object on success. Otherwise, this call throws an error.

DELETE /v1/products/:id
const stripe = require('stripe')('sk_test_BQokikJ...2HlWgH4olfQ2sk_test_BQokikJOvBiI2HlWgH4olfQ2');
const deleted = await stripe.products.del('prod_NWjs8kKbJWmuuc');
Response
{
"id": "prod_NWjs8kKbJWmuuc",
"object": "product",
"deleted": true
}