Actions252
- Api Keys Actions
- Attachments Actions
- Blocklists Actions
- Calendar Channel Event Associations Actions
- Find Many Calendar Channel Event Associations
- Create One Calendar Channel Event Association
- Create Many Calendar Channel Event Associations
- Find One Calendar Channel Event Association
- Delete One Calendar Channel Event Association
- Update One Calendar Channel Event Association
- Find Calendar Channel Event Association Duplicates
- Companies Actions
- Calendar Channels Actions
- Calendar Event Participants Actions
- Calendar Events Actions
- Connected Accounts Actions
- Favorite Folders Actions
- Favorites Actions
- Message Channel Message Associations Actions
- Find Many Message Channel Message Associations
- Create One Message Channel Message Association
- Create Many Message Channel Message Associations
- Find One Message Channel Message Association
- Delete One Message Channel Message Association
- Update One Message Channel Message Association
- Find Message Channel Message Association Duplicates
- Message Channels Actions
- Message Folders Actions
- View Fields Actions
- Message Participants Actions
- Messages Actions
- Message Threads Actions
- Notes Actions
- Note Targets Actions
- Opportunities Actions
- People Actions
- Tasks Actions
- Task Targets Actions
- Timeline Activities Actions
- View Filter Groups Actions
- View Filters Actions
- View Groups Actions
- Views Actions
- View Sorts Actions
- Webhooks Actions
- Workflow Automated Triggers Actions
- Workflow Runs Actions
- Workflows Actions
- Workflow Versions Actions
- Workspace Members Actions
Overview
This node allows you to delete a specific Workflow Automated Trigger by its unique identifier. It is useful in scenarios where you need to programmatically remove triggers that automate workflows, for example, when cleaning up unused or obsolete automation rules or managing workflow lifecycle dynamically.
Practical examples include:
- Removing an outdated trigger after a workflow update.
- Deleting a trigger as part of a cleanup process in automated deployment pipelines.
- Managing triggers based on external events or conditions.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the Workflow Automated Trigger to delete. This is a required string input specifying which trigger to remove. |
Output
The node outputs JSON data representing the result of the deletion operation. Typically, this will confirm whether the trigger was successfully deleted or provide details about the deletion status. There is no binary output expected from this operation.
Dependencies
- Requires an API key credential to authenticate with the external service managing workflow triggers.
- The node depends on the Twenty API (as indicated by the bundled source referencing "TwentyDEV" and its OpenAPI specification).
- Proper configuration of the API domain and authentication credentials within n8n is necessary.
Troubleshooting
Common issues:
- Providing an invalid or non-existent trigger ID will likely result in an error indicating the trigger could not be found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity problems can prevent the node from reaching the API endpoint.
Error messages and resolutions:
- "Trigger not found": Verify the provided Id is correct and exists.
- "Authentication failed": Check that the API key credential is correctly configured and has sufficient permissions.
- Timeout or network errors: Ensure stable internet connection and that the API endpoint is reachable.
Links and References
- Twenty API Documentation (for detailed API usage and authentication)
- n8n documentation on Using Credentials