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 view filter by its unique identifier. It is useful in scenarios where you manage views with filters and need to programmatically remove a filter that is no longer relevant or was created by mistake. For example, if you have a dashboard or report filtered by certain criteria and want to clean up unused filters automatically, this node can be integrated into your workflow.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the view filter object you want to delete. This is required to specify which filter to remove. |
Output
The output JSON will typically contain the response from the API confirming the deletion of the specified view filter. This may include status information or details about the deleted filter. The node does not output binary data.
Dependencies
- Requires an API key credential for authenticating with the Twenty API.
- The base URL for the API is configured dynamically from the provided credentials.
- The node depends on the
@devlikeapro/n8n-openapi-nodepackage and a local 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 empty or incorrect, the API call will fail. Ensure you provide a valid filter ID.
- Authentication errors: If the API key or domain credentials are missing or incorrect, the request will be unauthorized. Verify your credentials configuration.
- Network issues: Connectivity problems to the API endpoint will cause failures. Check your network and API availability.
- API errors: The API might return errors if the filter does not exist or has already been deleted. Handle such cases gracefully in your workflow.
Links and References
- Twenty API Documentation (Assumed based on context; replace with actual link)
- n8n OpenAPI Node Integration Guide