TwentyDEV icon

TwentyDEV

Consume the Twenty API

Actions252

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-node package 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

Discussion