BeeAI icon

BeeAI

Interact with BeeAI API

Overview

The node interacts with the BeeAI API to manage conversations. Specifically, the "Get Conversation" operation retrieves details of a conversation by its unique ID. This is useful in scenarios where you want to fetch the current state or history of a conversation for further processing, analysis, or display within an automation workflow.

Practical examples include:

  • Fetching a customer support chat transcript to analyze user queries.
  • Retrieving a conversation context before sending follow-up messages.
  • Integrating conversation data into CRM or ticketing systems.

Properties

Name Meaning
Conversation ID The unique identifier of the conversation to retrieve. Required to specify which conversation to get.

Output

The node outputs JSON data representing the conversation details fetched from the BeeAI API. This typically includes metadata about the conversation such as participants, messages, timestamps, and status. The exact structure depends on the API response but generally provides comprehensive information about the specified conversation.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the BeeAI API.
  • The base URL for API requests is https://api.bee.computer.
  • Proper configuration of the API key credential in n8n is necessary for successful requests.

Troubleshooting

  • Missing or invalid Conversation ID: The operation requires a valid conversation ID. Ensure this property is set and correctly references an existing conversation.
  • Authentication errors: If the API key is missing, invalid, or expired, the node will fail to authenticate. Verify that the API key credential is correctly configured.
  • Network or API errors: Connectivity issues or API downtime can cause failures. Check network access and BeeAI service status.
  • Unexpected API responses: If the conversation ID does not exist or has been deleted, the API may return an error or empty result. Handle such cases gracefully in your workflow.

Links and References

Discussion