Actions16
- Conversation Actions
- Todo Actions
- Fact Actions
- Location Actions
Overview
The node "BeeAI" allows interaction with the BeeAI API, providing multiple resources including Todos. Specifically, the "Create Todo" operation lets users create a new todo item by specifying its text and optionally setting an alarm time. This is useful for automating task management workflows, reminders, or integrating todo creation into larger automation processes.
For example, you could use this node to automatically add tasks to your todo list based on incoming emails, chat messages, or other triggers in your workflow.
Properties
| Name | Meaning |
|---|---|
| Text | The main content or description of the todo item to be created. |
| Alarm At (Optional) | An optional timestamp string specifying when an alarm/reminder should trigger for the todo. |
Output
The node outputs JSON data representing the created todo item as returned by the BeeAI API. This typically includes details such as the todo's unique ID, text, alarm time if set, creation timestamps, and any other metadata provided by the API.
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. - The node sends requests with
Accept: application/jsonandContent-Type: application/jsonheaders.
Troubleshooting
- Authentication errors: Ensure that a valid API key credential is configured in n8n for the BeeAI service.
- Missing required fields: The "Text" property is mandatory; omitting it will likely cause the API to reject the request.
- Invalid alarm time format: If the "Alarm At" field is used, ensure it is a properly formatted timestamp string accepted by the API.
- Network issues: Verify connectivity to
https://api.bee.computerand that no firewall or proxy blocks the requests.
Links and References
- BeeAI API Documentation (assumed official API docs)
- n8n documentation on creating custom nodes