# Delete a product `DELETE https://api.leapa.co/v2/products/{product_id}` Send your API key as a bearer token in the `Authorization` header. ## Path parameters - `product_id` · _string_ · **required** Example: `prd_84c2e7f019` ## Response 200 - `id` · _string_ — Product ID - `object` · _string_ — The object name - `deleted` · _boolean_ — Flag indicating that the product has been deleted. ```json { "id": "obj_5f21c8a40b", "object": "string", "deleted": false } ``` ## Status codes - `200` OK - `400` Bad request - `401` Unauthorized - `402` Payment required - `403` Forbidden - `404` Not found - `428` Precondition required - `500` Server error ## Example ```bash curl -X DELETE "https://api.leapa.co/v2/products/prd_84c2e7f019" \ -H "Authorization: Bearer $LEAPA_API_KEY" \ -H "Accept: application/json" ``` --- _Generated from the Leapa documentation at leapa.co/docs._