Actions26
- Milestone Actions
- Project Actions
- Project Admin Actions
- Task Actions
- Time Log Actions
Overview
The node integrates with the Cloodo Worksuite API to update a Milestone resource within a project management context. It allows users to modify milestone details such as start and due dates, assigned user IDs, and additional descriptive fields. This node is useful in scenarios where project milestones need to be programmatically updated based on changing project timelines or team assignments, for example, adjusting deadlines after project scope changes or reassigning milestone responsibilities.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the milestone to update. |
| Format Date | The date format used for input dates; currently supports "Y-M-D" (e.g., 2022-11-11). |
| Start Date | The new start date of the milestone (required). |
| Due Date | The new due date of the milestone (required). |
| Users ID | Comma-separated string of user IDs assigned to the milestone (required). |
| Additional Fields | Optional extra fields to provide more information: - Description: Text description of the milestone. - Date: A date field formatted as ISO date string. - Date2: Another date field formatted similarly. |
Output
The node outputs JSON data representing the updated milestone object as returned by the Cloodo Worksuite API. This typically includes the milestone's updated properties such as its ID, start and due dates, assigned users, description, and any other metadata provided by the API response.
If binary data were involved (not indicated here), it would represent files or attachments related to the milestone, but this node focuses on JSON data updates only.
Dependencies
- Requires an active connection to the Cloodo Worksuite API.
- Needs an API authentication token 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 key to update milestone resources are necessary.
Troubleshooting
- Invalid or missing ID: If the milestone ID is not provided or incorrect, the API will fail to locate the milestone to update. Ensure the correct ID is entered.
- Date format errors: Dates must be provided in the specified format (
Y-M-D). Incorrect formats may cause validation errors. - Missing required fields: Start Date, Due Date, and Users ID are mandatory. Omitting these will result in errors.
- API authentication failures: Invalid or expired API tokens will prevent successful updates. Verify credential validity.
- Permission issues: Insufficient API permissions can cause authorization errors when attempting to update milestones.
- Network or connectivity problems: Ensure that the n8n instance has internet access and can reach the Cloodo API endpoint.
Links and References
- Cloodo Worksuite API Documentation (Assumed official docs URL)
- n8n documentation on creating custom nodes for further customization guidance
