Actions18
- Attachment Actions
- Comment Actions
- Dartboard Actions
- Doc Actions
- Folder Actions
- Help Center Article Actions
- Skill Actions
- Task Actions
- View Actions
Overview
This node integrates with the Dart project management service to perform operations on tasks. Specifically, the "Delete Task" operation allows users to remove a task from their Dart workspace by specifying its unique identifier. This is useful for automating task cleanup, managing workflows, or integrating Dart task management into broader automation pipelines.
Practical examples include:
- Automatically deleting completed or obsolete tasks after certain triggers.
- Cleaning up test or temporary tasks created during automated processes.
- Integrating with other tools to synchronize task deletions across platforms.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the task to be deleted. This is a required string input that specifies which task the node will remove. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this includes confirmation of deletion or any relevant status information returned by the Dart API. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key credential for authenticating with the Dart service.
- The base URL for API requests is configured dynamically from the provided credentials.
- The node expects the Dart API to accept and return JSON-formatted data.
Troubleshooting
Common issues:
- Providing an invalid or non-existent task ID will likely cause the API to return an error indicating the task was not found.
- Missing or incorrect API credentials will prevent successful authentication.
- Network connectivity problems can cause request failures.
Error messages and resolutions:
- "Task not found": Verify the task ID is correct and exists in your Dart workspace.
- Authentication errors: Ensure the API key credential is correctly set up and has necessary permissions.
- Request timeouts or network errors: Check internet connection and Dart service availability.
Links and References
- Dart Project Management API Documentation (replace with actual URL if available)
- n8n documentation on creating custom nodes