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 single message participant by specifying its unique identifier. It is useful in scenarios where you need to remove a participant from a message thread or conversation, such as managing chat participants or cleaning up message data.
For example, if you have a messaging system integrated and want to programmatically remove a user from a conversation, this node can perform that deletion based on the participant's ID.
Properties
| Name | Meaning |
|---|---|
| Id | The unique identifier of the message participant to delete. 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 details about the deleted participant object. 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 the Twenty API OpenAPI specification bundled within the node.
Troubleshooting
- Common issue: Providing an invalid or non-existent participant ID will likely result in an error response from the API indicating that the resource was not found.
- Error message: "Object id not found" or similar indicates the specified participant ID does not exist; verify the ID before retrying.
- Authentication errors: Ensure the API key credential is correctly set up and has sufficient permissions to delete message participants.
- Network issues: Check connectivity to the API endpoint and ensure the domain configured in credentials is correct.
Links and References
- Twenty API Documentation (general reference for the API used)
- n8n Documentation - Creating Custom Nodes