Dragon Family icon

Dragon Family

Управление семейными задачами через API Dragon Family. Создавайте ежедневные и разовые задачи, обновляйте существующие, получайте списки todo и работайте с целями. Поддерживает планирование повторяющихся задач по дням недели, назначение исполнителей и систему вознаграждений драконами.

Overview

This node integrates with the Dragon Family API to manage and retrieve family-related tasks and todos. Specifically, the "List Todos Without Date" operation under the "Member" resource fetches a list of todo items assigned to a specific child (assignee) that do not have an associated date.

This operation is useful in scenarios where you want to track or display pending tasks for a child that are not bound to any particular day, such as ongoing chores or open-ended responsibilities. For example, a parent might use this to review all undated todos assigned to their child to monitor progress or plan future activities.

Properties

Name Meaning
Base URL The base URL for the Dragon Family API. Defaults to https://api.dragonfamily.com.
User Token Your API access token, sent as a Bearer token in the Authorization header for authentication.
Assignee The ID of the assignee (child) whose undated todos you want to list. This is a required field.

Output

The output is a JSON object containing the list of todos without dates assigned to the specified assignee. The exact structure depends on the API response but typically includes details about each todo item such as its title, description, status, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires access to the Dragon Family API.
  • An API access token must be provided for authorization via the Bearer token in the HTTP headers.
  • The node uses HTTP requests to communicate with the API endpoint at the configured Base URL.

Troubleshooting

  • Missing or invalid token: If the API token is missing or incorrect, the request will fail with an authorization error. Ensure you provide a valid API access token.
  • Invalid assignee ID: Providing an incorrect or non-existent assignee ID may result in empty results or errors. Verify the assignee ID corresponds to a valid child in your Dragon Family account.
  • Network issues or wrong Base URL: If the Base URL is incorrect or there are network connectivity problems, the request will fail. Confirm the Base URL is correct and accessible.
  • Empty response: If no todos without dates exist for the given assignee, the output will be an empty list.

Links and References

  • Dragon Family API Documentation (Assumed official API docs; replace with actual link if available)
  • n8n HTTP Request Node documentation for understanding how API calls are made within n8n workflows.

Discussion