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, specifically providing an operation to delete a document ("Doc") by its ID. It is useful in scenarios where you need to programmatically remove outdated or incorrect documents from your Dart workspace, helping maintain organized and up-to-date project files.
For example, if you have an automated workflow that cleans up project documentation after certain milestones or when documents are archived elsewhere, this node can be used to delete those documents directly via their unique IDs.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the document to delete. This is a required string input specifying which document will be removed. |
Output
The node outputs JSON data representing the response from the Dart API after attempting to delete the specified document. Typically, this will include confirmation of deletion or error details if the operation failed.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential for authenticating with the Dart service.
- The base URL for the Dart API must be configured in the credentials.
- The node sends HTTP requests with
AcceptandContent-Typeheaders set toapplication/json.
Troubleshooting
Common issues:
- Providing an invalid or non-existent document ID will result in an error response from the API.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity problems may prevent the node from reaching the Dart API.
Error messages:
- "Document not found" or similar indicates the provided ID does not correspond to any existing document.
- Authentication errors suggest checking the API key and base URL configuration.
- Timeout or connection errors require verifying network access and Dart service availability.
Links and References
- Dart Project Management API Documentation (example placeholder link)
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)