Cloodo Project icon

Cloodo Project

Get data from Cloodo Worksuite API

Overview

The node integrates with the Cloodo Worksuite API to manage project-related data. Specifically, for the Task resource with the Delete operation, it deletes a task identified by its unique ID from the Cloodo system. This is useful in workflows where tasks need to be programmatically removed, such as cleaning up completed or obsolete tasks, automating project management processes, or synchronizing task states between systems.

Example use cases:

  • Automatically deleting tasks that are marked as canceled in another system.
  • Removing test or placeholder tasks after project setup.
  • Cleaning up tasks as part of a project archival or reset workflow.

Properties

Name Meaning
ID The unique identifier of the Task to delete. This is a required string input where you specify the Task ID to be removed.

Output

The node outputs JSON data representing the response from the Cloodo API after attempting to delete the specified task. Typically, this will include confirmation of deletion or an error message if the deletion failed.

If the node supports binary data output (not evident from the provided code), it would relate to any files or attachments associated with the task, but no such indication is present here.

Dependencies

  • Requires an active connection to the Cloodo Worksuite API.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • The base URL for API requests is https://erp-amz.cloodo.com/v4.
  • The node expects JSON content type and accepts JSON responses.

Troubleshooting

  • Missing or invalid Task ID: Ensure the "ID" property is correctly set to a valid task identifier. An empty or incorrect ID will cause the API to reject the request.
  • Authentication errors: Verify that the API credential is properly configured and has sufficient permissions to delete tasks.
  • Network issues: Confirm network connectivity to the Cloodo API endpoint.
  • API errors: If the task does not exist or cannot be deleted due to dependencies or permissions, the API will return an error message. Review the returned JSON for details.

Links and References

Discussion