Actions16
- Conversation Actions
- Todo Actions
- Fact Actions
- Location Actions
Overview
The node interacts with the BeeAI API, specifically managing conversations among other resources. The "End Conversation" operation allows users to terminate an ongoing conversation by specifying its unique ID. This is useful in scenarios where a conversation session needs to be closed programmatically, such as after completing a task or when cleaning up inactive sessions.
Practical examples include:
- Automatically ending chatbot conversations after a certain condition is met.
- Closing support ticket conversations once resolved.
- Managing conversation lifecycle in automated workflows.
Properties
| Name | Meaning |
|---|---|
| Conversation ID | The unique identifier of the conversation to end. This is required to specify which conversation to terminate. |
Output
The node outputs JSON data representing the result of the "End Conversation" operation. Typically, this will include confirmation that the conversation has been ended, possibly including metadata about the conversation or status messages from the API.
If the node supports binary data output (not indicated here), it would represent any files or attachments related to the conversation termination response.
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 within n8n is necessary for successful operation.
Troubleshooting
- Missing or invalid Conversation ID: Ensure the Conversation ID property is provided and correctly references an existing conversation.
- Authentication errors: Verify that the API key credential is valid and has the necessary permissions.
- API connectivity issues: Check network access to
https://api.bee.computerand ensure no firewall or proxy blocks the request. - Unexpected API responses: Review the API documentation for possible changes or error codes returned by the BeeAI service.
Links and References
- BeeAI API Documentation (assumed base URL; check official docs for details)
- n8n documentation on API credentials