Actions62
- Client Actions
- ClientDetail Actions
- Engagement Actions
- Estimate Actions
- Lead Actions
- Lead Agent Actions
- Lead Category Actions
- Lead Source Actions
- Lead Status Actions
- Proposal Actions
- Project Actions
- Task Actions
- Note Actions
Overview
This node integrates with the Cloodo CRM API to manage tasks within projects. Specifically, the "Delete Task" operation allows users to remove a task by specifying its unique ID. This is useful in scenarios where tasks are no longer relevant or were created by mistake and need to be cleaned up from the project management system.
Practical examples include:
- Automatically deleting completed or canceled tasks as part of workflow automation.
- Removing duplicate or erroneous tasks during data synchronization processes.
- Cleaning up tasks when archiving or restructuring projects.
Properties
Name | Meaning |
---|---|
ID | The unique identifier of the task to delete. This is a required string input where you enter the Task ID that you want to remove from the system. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation of deletion or any error messages returned by the API. The exact structure depends on the Cloodo API response but generally confirms whether the task was successfully deleted.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Cloodo CRM API.
- Needs an API authentication token or key configured in n8n credentials for accessing the Cloodo API.
- The base URL for API requests is
https://erp-amz.cloodo.com/v4/
.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Task ID will likely result in an error indicating the task could not be found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity problems can prevent the node from reaching the Cloodo API.
Error messages and resolutions:
- "Task not found" — Verify the Task ID is correct and exists in the system.
- "Authentication failed" — Check that the API key or token is correctly set up in n8n credentials.
- Timeout or network errors — Ensure stable internet connection and that the Cloodo API endpoint is reachable.
Links and References
- Cloodo CRM API Documentation (for detailed API endpoints and responses)
- n8n documentation on creating custom nodes