TwentyDEV icon

TwentyDEV

Consume the Twenty API

Actions252

Overview

This node interacts with the Twenty API to retrieve detailed information about a single message thread by its unique identifier. It is useful when you want to fetch a specific conversation or discussion thread, including optionally nested related data such as messages within the thread or associated metadata.

Practical examples include:

  • Displaying the full details of a particular message thread in a dashboard.
  • Fetching conversation history for customer support or community management.
  • Integrating message thread data into other workflows or systems for analysis or reporting.

Properties

Name Meaning
Id The unique identifier of the message thread to retrieve.
Depth Determines how much related nested data to include:
- 0: Only the primary message thread info.
- 1: Primary thread plus directly related objects.
- 2: Primary thread, directly related objects, and their related objects.

Output

The node outputs JSON data representing the requested message thread. The structure includes the main thread's properties and, depending on the Depth parameter, may include nested related objects such as messages, participants, or other linked entities. No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the Twenty API.
  • The base URL for the API is configured via credentials.
  • The node uses standard HTTP headers for JSON content negotiation.

Troubleshooting

  • Missing or invalid Id: Ensure the Id property is provided and correctly references an existing message thread.
  • Authentication errors: Verify that the API key credential is valid and has necessary permissions.
  • Depth parameter misuse: Using a higher depth value may increase response size and latency; adjust according to needs.
  • API connectivity issues: Check network access and correct base URL configuration in credentials.

Links and References

Discussion