Appearance
Delete Product
Delete a product. This archives the product rather than permanently deleting it.
DELETE /v1/products/:idPath Parameters
| Parameter | Description |
|---|---|
id | Product ID |
Response
json
{
"data": {
"id": "prd_xxx",
"status": "archived",
"deletedAt": "2026-02-06T12:00:00.000Z"
}
}Example
bash
curl -X DELETE "https://api.packedge.dev/v1/products/prd_xxx" \
-H "Authorization: Bearer pk_your_api_key"Notes
- Deleting a product sets its status to
archived - Associated licenses remain but cannot be used for new activations
- This action can be undone by updating the product status back to
active
