Dragon Family icon

Dragon Family

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

Overview

The node integrates with the Dragon Family API to manage and retrieve various family-related tasks and data. Specifically, for the Member resource and List Skills operation, it provides a predefined list of personal development skills with their descriptions. This is useful in scenarios where you want to enrich workflows with motivational or educational content about key life skills without making an external API call.

Practical examples:

  • Automatically include a set of life skills descriptions in a report or email.
  • Use the skills list as reference data for further processing or decision-making in your workflow.
  • Combine with other operations to assign or track skill development within a family management system.

Properties

Name Meaning
Base URL Base URL for the Dragon Family API. Default is https://api.dragonfamily.com.
User Token Your API access token. Sent as Bearer token in the Authorization header for authenticated calls.

Output

The output JSON contains a single object with keys representing different life skills and values describing each skill's meaning:

{
  "relationships_building": "Relationship building is the ability to connect with others, listen and understand them, express thoughts and feelings, resolve conflicts, and find compromises.",
  "self_reliance": "Self-reliance is the ability to make decisions, set goals independently, solve your own problems, and take responsibility for your freedom of choice.",
  "sense_of_purpose": "Sense of purpose is the ability to stay focused on set goals, overcome obstacles, and keep going despite difficulties.",
  "money_management": "Money management is the ability to plan expenses, save money, and allocate income effectively.",
  "creativity": "Creativity is the ability to find unconventional solutions, see things differently, and express thoughts and feelings through art.",
  "critical_thinking": "Critical thinking is the ability to analyze information, identify key points, compare and evaluate viewpoints, and make reasoned decisions.",
  "lifetime_learning": "Lifelong learning is the ability and motivation to continuously acquire knowledge and improve existing skills."
}

This output provides a static, hardcoded list of skills and their explanations, useful for reference or display purposes.

Dependencies

  • Requires an API access token (User Token) for authenticated requests to the Dragon Family API.
  • The Base URL can be customized but defaults to https://api.dragonfamily.com.
  • No external HTTP request is made for the List Skills operation since the data is returned statically from the node itself.

Troubleshooting

  • Missing or invalid User Token: Although the List Skills operation does not require an API call, other operations do. Ensure your token is valid and correctly set to avoid authentication errors.
  • Incorrect Base URL: If you customize the Base URL, ensure it is correct; otherwise, API requests will fail.
  • Empty output: For List Skills, output is always static and predefined. If no data appears, verify that the operation parameter is correctly set to "List Skills".
  • HTTP request failures: Other operations perform HTTP requests; network issues or incorrect parameters may cause errors. Check error messages for HTTP status codes and response details.

Links and References

Discussion