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 deletes a single message channel identified by its unique ID. It is useful in scenarios where you need to programmatically remove a specific communication channel from a messaging platform or service, for example, cleaning up unused channels or managing channel lifecycle automatically.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the message channel to delete. This is a required string input. |
Output
The output JSON will typically contain the response from the API indicating the result of the deletion operation. This may include confirmation of successful deletion or details about any error encountered. The exact structure depends on the underlying API but generally confirms whether the specified message channel was deleted.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential to authenticate requests to the Twenty API.
- The node uses the Twenty API base URL configured via credentials.
- The node depends on the
@devlikeapro/n8n-openapi-nodepackage and the Twenty API OpenAPI specification bundled astwenty-v1.0.3-openapi.json.
Troubleshooting
- Missing or invalid Id: If the "Id" property is not provided or incorrect, the API will likely return an error indicating that the resource could not be found or the request is invalid. Ensure the correct channel ID is supplied.
- Authentication errors: If the API key or domain credentials are missing or invalid, authentication will fail. Verify that the credentials are correctly set up in n8n.
- API errors: The API might return errors if the channel does not exist or has already been deleted. Handle such cases gracefully in your workflow.
- Network issues: Connectivity problems can cause request failures. Check network access and API availability.
Links and References
- Twenty API Documentation (Assumed based on the node name; replace with actual link)
- n8n Documentation on Creating Custom Nodes