delete https://api.productboard.com/v2/entities/
Deletes a Product Management entity by ID. This operation permanently removes the specified entity from your workspace.
If the entity has any child entities (e.g. a product with components, or a feature with subfeatures), those children will be deleted automatically as part of a cascading delete.
Use this endpoint with caution — deletion is irreversible.
Code examples
Replace <entity-id> with the ID of the Entities to delete.
Replace <your-token> with a valid API token.
Delete an initiative:
curl -X DELETE "https://api.productboard.com/v2/entities/<entity-id>" \
-H "Authorization: Bearer <your-token>"
Delete a test feature:
curl -X DELETE "https://api.productboard.com/v2/entities/<entity-id>" \
-H "Authorization: Bearer <your-token>"