Overview
This node integrates with Dida365, a task and project management application. Specifically, the Task - Complete operation marks a specified task within a project as completed.
Typical use cases include:
- Automating task completion workflows after certain triggers or conditions are met.
- Integrating Dida365 task status updates into broader automation pipelines.
- Synchronizing task states between Dida365 and other systems.
For example, when a support ticket is resolved in another system, this node can automatically mark the corresponding Dida365 task as complete.
Properties
| Name | Meaning |
|---|---|
| Project Name or ID | Select the project containing the task to complete. You can choose from a list or specify an ID via expression. |
| Task Name or ID | Select the specific task to mark as complete within the chosen project. Choose from a list or specify an ID via expression. |
Output
The node outputs a JSON array containing the response from the Dida365 API after marking the task as complete. This typically includes details about the updated task status confirming its completion.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to Dida365 via OAuth2 authentication (an API key credential).
- The node depends on the Dida365 API endpoints for projects and tasks.
- Proper configuration of credentials in n8n is necessary to authenticate API requests.
Troubleshooting
Common issues:
- Invalid or missing Project ID or Task ID parameters will cause errors.
- Network or authentication failures may prevent successful API calls.
- Providing incorrect JSON input (if applicable in other operations) leads to parsing errors.
Error messages:
"The operation "complete" is not known!"— indicates an unsupported operation was selected."The resource "task" is not known!"— indicates an invalid resource selection."Invalid JSON input: ..."— occurs if JSON parameters are malformed (not typical for the complete operation)."Project ID must be provided"or"Task ID is required"— ensure these IDs are correctly set.
To resolve errors, verify that the project and task IDs are correct and that the API credentials are valid and have sufficient permissions.
Links and References
- Dida365 Official Website
- n8n Expressions Documentation
- Dida365 API Documentation (for detailed API endpoint info)