Actions16
- Conversation Actions
- Todo Actions
- Fact Actions
- Location Actions
Overview
The node interacts with the BeeAI API, specifically allowing users to manage "Todo" items among other resources. The "List Todos" operation fetches a paginated list of todo items from the BeeAI service. This is useful for workflows that need to retrieve and process task lists, such as project management automation, reminders, or syncing todos with other systems.
Practical examples include:
- Automatically fetching your current todo list to display in a dashboard.
- Integrating todos into a notification system to alert users about pending tasks.
- Syncing todos between BeeAI and other productivity tools.
Properties
| Name | Meaning |
|---|---|
| Pagination | Collection of pagination options: |
| - Page Number | The page number to fetch (minimum 1). |
| - Number of Items per Page | Maximum number of todo items to return per request (minimum 1). |
Output
The node outputs JSON data containing the list of todo items retrieved from the BeeAI API. Each item typically includes details such as the todo's content, status, creation date, and any other metadata provided by the API.
If the API supports it, the output may also include pagination metadata (e.g., total count, next page token) to facilitate fetching additional pages.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the BeeAI API.
- The node sends requests to
https://api.bee.computer. - Proper configuration of the API key credential within n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing API key will cause authentication errors.
- Requesting a page number beyond available pages may return empty results.
- Setting the limit too high might lead to performance issues or API rate limiting.
Error messages:
- Authentication failures: Verify that the API key credential is correctly set up.
- Rate limit exceeded: Reduce request frequency or lower the number of items per page.
- Invalid parameter errors: Ensure page and limit values are positive integers.
Links and References
- BeeAI API Documentation (general reference; specific endpoints and parameters should be checked there)