Actions26
- Milestone Actions
- Project Actions
- Project Admin Actions
- Task Actions
- Time Log Actions
Overview
The node integrates with the Cloodo Worksuite API to retrieve tasks associated with a specific project. The "Get Task By Project ID" operation fetches all tasks linked to a given project identifier, supporting pagination to manage large result sets. This is useful for project managers or team members who want to view or process tasks within a particular project context.
Practical examples include:
- Displaying all tasks under a project dashboard.
- Exporting project tasks for reporting or analysis.
- Automating task status updates or notifications based on project progress.
Properties
| Name | Meaning |
|---|---|
| Page | The page number of results to retrieve when fetching multiple tasks (pagination support). Defaults to 1. |
| Project_id | The unique identifier of the project whose tasks you want to retrieve. |
Output
The node outputs JSON data representing the list of tasks retrieved from the specified project. Each task object typically includes details such as task ID, name, description, status, assigned users, deadlines, and other relevant metadata defined by the Cloodo Worksuite API.
If binary data were involved (e.g., attachments), it would be included in a separate binary property, but this operation focuses on JSON task data only.
Dependencies
- Requires an active connection to the Cloodo Worksuite API.
- Needs an API authentication token or key configured in the node's credentials to authorize requests.
- The base URL for API requests is
https://erp-amz.cloodo.com/v4.
Troubleshooting
- Invalid Project ID: If the provided project ID does not exist or is malformed, the API may return an error or empty result. Verify the project ID before use.
- Authentication Errors: Missing or invalid API credentials will cause authorization failures. Ensure the API key/token is correctly set up.
- Pagination Issues: Requesting pages beyond the available range may return empty results. Adjust the "Page" property accordingly.
- Network or API Downtime: Connectivity issues or API service interruptions can cause request failures. Check network status and API availability.
Links and References
- Cloodo Worksuite API Documentation (Assumed official API docs)
- n8n Documentation on Creating Custom Nodes
