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 Project resource with the Delete operation, it allows users to delete a project by specifying its unique identifier (ID). This is useful in scenarios where projects are completed, canceled, or no longer needed and should be removed from the system to keep data clean and relevant.

Practical examples include:

  • Automatically deleting projects that have been archived or marked as obsolete.
  • Cleaning up test or demo projects created during development or training.
  • Removing projects via workflow automation triggered by external events.

Properties

Name Meaning
ID The unique identifier of the project to delete. Users must provide this string value to specify which project will be deleted.

Output

The node outputs JSON data representing the result of the delete operation. Typically, this includes confirmation of deletion or any error messages returned by the API. The exact structure depends on the API response but generally confirms whether the project was successfully deleted.

No binary data output is involved in this operation.

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.
  • Proper permissions on the API side to perform delete operations on projects.

Troubleshooting

  • Missing or invalid ID: If the ID property is empty or incorrect, the API will likely return an error indicating the project cannot be found or identified. Ensure the correct project ID is provided.
  • Authentication errors: If the API key or token is missing, expired, or invalid, the node will fail to authenticate. Verify the credential configuration.
  • Permission denied: The user associated with the API key may lack permission to delete projects. Check API user roles and permissions.
  • Network issues: Connectivity problems can cause request failures. Confirm network access to the API endpoint.
  • API rate limits: Excessive requests might trigger rate limiting; handle such errors by adding retries or delays.

Links and References

Discussion