TwentyDEV icon

TwentyDEV

Consume the Twenty API

Actions252

Overview

This node interacts with the Twenty API to delete a specific Message Channel Message Association by its unique identifier. It is useful in scenarios where you need to programmatically remove associations between messages and channels, such as cleaning up outdated links or managing message relationships within a communication platform.

For example, if you have an automated workflow that manages message threads or channels, this node can be used to delete a particular association when it is no longer relevant or needs to be refreshed.

Properties

Name Meaning
Id The unique identifier of the Message Channel Message Association 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 association. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential for authenticating with the Twenty API.
  • The node expects the base URL for the API to be provided via credentials.
  • The node uses standard HTTP headers for JSON content type and accepts JSON responses.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Id will likely result in an error from the API indicating that the resource could not be found.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity issues may prevent the node from reaching the API endpoint.
  • Error messages:

    • "Resource not found" or similar indicates the Id does not correspond to any existing association.
    • Authentication errors suggest checking the API key or token configuration.
    • Timeout or connection errors require verifying network access and API availability.

Links and References

Discussion