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 version of a workflow by its unique identifier. It is useful in scenarios where you need to manage and clean up old or unwanted workflow versions programmatically, ensuring that only relevant versions remain active or stored. For example, if you have multiple iterations of a workflow and want to remove outdated versions to maintain clarity or reduce clutter, this node can automate that process.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier (object id) of the workflow version to be deleted. This is a required string input. |
Output
The node outputs JSON data representing the result of the deletion operation. Typically, this will include confirmation of the deletion or any relevant status information returned by the API. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential for authentication with the external Twenty API service.
- The node uses the Twenty API base URL configured via credentials.
- The node depends on the
@devlikeapro/n8n-openapi-nodepackage and a bundled OpenAPI specification file (twenty-v1.0.3-openapi.json) to build its properties and handle requests.
Troubleshooting
- Missing or invalid Id: If the "Id" property is not provided or is incorrect, the API call to delete the workflow version will fail. Ensure the correct object id is supplied.
- Authentication errors: If the API key credential is missing or invalid, the node will not be able to authenticate with the Twenty API. Verify that the credential is correctly set up.
- API errors: If the specified workflow version does not exist or has already been deleted, the API may return an error. Check the id value and confirm the version's existence before attempting deletion.
- Network issues: Connectivity problems with the Twenty API endpoint can cause request failures. Confirm network access and API availability.
Links and References
- Twenty API Documentation (general reference for the API used)
- n8n Documentation - Creating Custom Nodes