BeeAI icon

BeeAI

Interact with BeeAI API

Overview

The node integrates with the BeeAI API to update an existing fact record. It allows users to modify the text content of a fact and its confirmation status by specifying the fact's unique identifier. This operation is useful in scenarios where facts need to be corrected, verified, or updated dynamically within an automated workflow.

Practical examples include:

  • Updating a fact's description after receiving new information.
  • Marking a fact as confirmed or unconfirmed based on validation processes.
  • Automating fact management in knowledge bases or AI-driven applications.

Properties

Name Meaning
Fact ID The unique identifier of the fact to update. Required to specify which fact to modify.
Text The updated textual content of the fact. This replaces the existing fact text.
Confirmed A boolean indicating whether the fact is confirmed (true) or not (false).

Output

The node outputs JSON data representing the updated fact object returned from the BeeAI API. This typically includes the fact's ID, updated text, confirmation status, and possibly other metadata fields provided by the API.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating requests to 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 communication.

Troubleshooting

  • Invalid Fact ID: If the specified Fact ID does not exist, the API may return an error indicating the fact was not found. Verify the ID before updating.
  • Missing Required Fields: Both "Text" and "Confirmed" properties are required. Omitting them will cause the request to fail.
  • Authentication Errors: Ensure the API key credential is correctly set up and has sufficient permissions.
  • API Connectivity Issues: Network problems or incorrect base URL configurations can prevent successful updates.

Links and References

Discussion