permanent_delete_entity
Permanently and IRREVERSIBLY hard-delete an entity from the recycle bin. The entity and all its children are removed from the database — this cannot be undone. Requires Admin role. Call once with no token to preview; re-call with the returned confirm_token and an idempotency_key to commit. entity_type must be one of: Customer, Project, Task, SubTask.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity_id | Yes | Id of the recycle-bin entity to permanently delete. | |
| entity_type | Yes | Type of entity to permanently delete. One of: Customer, Project, Task, SubTask. | |
| confirm_token | No | Token returned by the preview (call this tool once with no token to get it). Required to commit; expires in ~10 minutes. | |
| idempotency_key | No | Required when committing (confirm_token present): retrying with the same key returns the original result instead of acting twice. |