Cloodo Project icon

Cloodo Project

Get data from Cloodo Worksuite API

Overview

The node "Cloodo Project" integrates with the Cloodo Worksuite API to retrieve and manipulate project-related data. Specifically, for the Project - Get operation, it fetches detailed information about a single project by its unique identifier (ID). This is useful in scenarios where you need to pull up-to-date project details such as status, description, deadlines, or other metadata from the Cloodo platform into your workflow.

Practical examples include:

  • Automatically retrieving project details when a new task is created.
  • Syncing project information with other tools like CRMs or reporting dashboards.
  • Triggering notifications or updates based on project status changes.

Properties

Name Meaning
ID The unique identifier of the project to retrieve. You must provide this string value to specify which project’s data should be fetched.

Output

The node outputs JSON data representing the full details of the requested project. This typically includes fields such as project name, description, start and end dates, status, assigned users, and other relevant metadata as defined by the Cloodo Worksuite API.

If the node supports binary data output (not indicated here), it would represent attachments or files related to the project, but this is not evident from the provided code.

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 network access to the Cloodo API endpoint is necessary.

Troubleshooting

  • Missing or invalid ID: If the ID property is empty or incorrect, the API will likely return an error or no data. Ensure the ID corresponds to an existing project.
  • Authentication errors: If the API key or token is missing, expired, or invalid, the node will fail to authenticate. Verify that the credential is correctly set up in n8n.
  • Network issues: Connectivity problems or incorrect base URL configuration can cause request failures.
  • API rate limits or permissions: The user associated with the API key must have permission to access project data; otherwise, authorization errors may occur.

Links and References

Discussion