Actions26
- Milestone Actions
- Project Actions
- Project Admin Actions
- Task Actions
- Time Log Actions
Overview
The node integrates with the Cloodo Worksuite API to retrieve data related to various project management resources. Specifically, for the Task - Get operation, it fetches detailed information about a single task by its unique identifier (ID). This is useful in scenarios where you need to obtain up-to-date details of a specific task within a project, such as viewing task status, description, deadlines, or assigned users.
Practical examples include:
- Fetching task details to display in a dashboard.
- Retrieving task information before updating or processing it further.
- Integrating task data into reports or notifications.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the task to retrieve. You must provide this ID to specify which task's details should be fetched. |
Output
The node outputs JSON data representing the full details of the requested task. This typically includes fields such as task name, description, status, assigned users, deadlines, and other metadata defined by the Cloodo Worksuite API for tasks.
If the node supports binary data output (not indicated here), it would represent any file attachments or related binary content associated with the task.
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.
Troubleshooting
- Missing or invalid ID: If the ID property is empty or incorrect, the API will likely return an error indicating that the task was not found. Ensure the ID is correct and corresponds to an existing task.
- Authentication errors: If the API key or token is missing or invalid, the node will fail to authenticate. Verify that the API credentials are correctly set up in n8n.
- Network issues: Connectivity problems to the API endpoint can cause timeouts or failures. Check network access and API availability.
- Permission errors: Insufficient permissions on the API side may prevent access to certain tasks. Confirm that the API user has rights to read task data.
Links and References
- Cloodo Worksuite API Documentation (Assumed official docs URL; replace with actual if available)
- n8n documentation on creating custom nodes
