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 operation, Find Workflow Automated Trigger Duplicates, is designed to identify duplicate automated triggers within workflows. It helps users detect if there are any overlapping or redundant triggers configured in their workflow automation setup. This can be particularly useful for maintaining clean and efficient workflows by avoiding multiple triggers that perform the same or similar actions.
Common scenarios include:
- Auditing existing workflow triggers to ensure no duplicates exist.
- Cleaning up workflow configurations before deployment.
- Debugging unexpected behavior caused by multiple triggers firing simultaneously.
For example, a user might want to check if multiple database event triggers with identical settings are present, which could cause duplicated workflow executions.
Properties
| Name | Meaning |
|---|---|
| Depth | Determines how much related nested information to include in the response: - 0: Only primary object info. - 1: Primary object plus directly related objects. - 2: Primary object, its related objects, and their related objects. |
| Data | JSON array describing the trigger types and their specific settings to search for duplicates. For example, an entry might specify a trigger type like DATABASE_EVENT along with its configuration details. |
| Ids | JSON array of IDs to filter the search scope. Can be used to limit the duplicate search to specific trigger IDs or include null values as placeholders. |
Output
The output is a JSON structure containing the found duplicate workflow automated triggers. The exact structure depends on the API response but generally includes:
- Details of each detected duplicate trigger.
- Nested related objects depending on the
Depthparameter. - Metadata about the triggers such as type, settings, and identifiers.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential to authenticate requests to the external Twenty API service.
- The node uses the Twenty API base URL configured via credentials.
- The node relies on the
@devlikeapro/n8n-openapi-nodepackage and a bundled OpenAPI specification (twenty-v1.0.3-openapi.json) to build request properties and handle communication.
Troubleshooting
- Invalid JSON in Data or Ids: Since
DataandIdsexpect JSON input, malformed JSON will cause errors. Ensure valid JSON syntax when entering these fields. - Authentication Errors: Missing or incorrect API credentials will result in authentication failures. Verify that the API key credential is correctly set up.
- Empty or No Results: If no duplicates are found, the output may be empty. Confirm that the
DataandIdsparameters accurately reflect the triggers you want to check. - Depth Parameter Misuse: Setting an unsupported depth level (outside 0-2) may cause unexpected results or errors. Use only the provided options.
Links and References
- Twenty API Documentation (hypothetical link based on the node name)
- n8n Documentation on Custom Nodes
- OpenAPI Specification