Overview
This node integrates with Dida365, a task management application, to manage tasks within projects. Specifically, the Task - Get operation retrieves detailed information about a specific task identified by its ID within a given project.
Common scenarios where this node is useful include:
- Fetching task details for reporting or monitoring purposes.
- Retrieving task data to trigger further automation workflows based on task status or attributes.
- Integrating task information into other systems or dashboards.
For example, you might use this node to get the current status and description of a task before sending a notification or updating another system.
Properties
| Name | Meaning |
|---|---|
| Project Name or ID | Select the project from which to retrieve the task. You can choose from a list of available projects or specify an ID using an expression. |
| Task Name or ID | Select the specific task to retrieve within the chosen project. You can choose from a list of tasks filtered by the selected project or specify an ID using an expression. |
Output
The output is a JSON object representing the retrieved task's details as returned by the Dida365 API. This typically includes fields such as task title, description, start and due dates, priority, status, and other metadata related to the task.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the Dida365 API via OAuth2 authentication (an API key credential).
- The node depends on the availability of the Dida365 service and proper permissions to access the specified project and task.
- The node uses internal helper functions to load options dynamically for projects and tasks.
Troubleshooting
Common issues:
- Providing an invalid or non-existent project ID or task ID will result in errors or empty responses.
- Network connectivity problems or expired/invalid API credentials will cause request failures.
- If the task does not belong to the specified project, the API call will fail.
Error messages:
"The resource "task" is not known!"— indicates an unsupported resource was selected; ensure "Task" is chosen.- Errors related to missing or invalid IDs usually mean the input parameters are incorrect or incomplete.
- JSON parsing errors do not apply here since this operation does not accept JSON input.
To resolve these issues:
- Verify that the project and task IDs are correct and accessible.
- Ensure your API credentials are valid and have sufficient permissions.
- Check network connectivity and API endpoint availability.
Links and References
- Dida365 Official Website
- n8n Expressions Documentation (for using expressions in property inputs)