Skip to main content
DELETE
/
products
/
:id
curl -X DELETE https://api.autumnai.com/products/Pro%20Product \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true
}
Deletes a product by its ID.
Deleting a product will prevent new customers from attaching it. Existing customers with this product will retain access unless you also delete all versions.

Path Parameters

product_id
string
required
The ID of the product to delete.

Query Parameters

all_versions
boolean
default:false
If true, deletes all versions of the product. If false, only deletes the current version.

Response

success
boolean
Indicates whether the deletion was successful.
curl -X DELETE https://api.autumnai.com/products/Pro%20Product \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true
}

Build docs developers (and LLMs) love