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 Time Log entry. It allows users to modify details such as the associated project, task, user, start and end times, and memo notes for a specific time log record identified by its ID. This is useful in scenarios where time tracking data needs correction or updating after initial entry, such as adjusting logged hours or adding descriptive notes.
Practical examples include:
- Correcting the start or end time of a work session.
- Associating a time log with a different project or task.
- Adding or updating memos to provide context about the logged time.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the time log entry to update. |
| Format Date | The date format to use for date fields; currently supports "Y-M-D (e.g. 2022-11-11)". |
| Project ID | Identifier of the project associated with the time log. |
| Task ID | Identifier of the task associated with the time log. |
| Users ID | Identifier(s) of the user(s) related to the time log entry. |
| Start Date | The starting timestamp of the time log entry (required). |
| End Time | The ending timestamp of the time log entry (required). |
| Memo | A text note or description related to the time log entry (required). |
Output
The node outputs JSON data representing the updated time log entry as returned by the Cloodo Worksuite API. This typically includes the updated fields such as IDs, timestamps, and memo content reflecting the changes made.
If binary data were involved (not indicated here), it would represent file attachments or similar, but this node focuses on JSON data 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.
Troubleshooting
- Invalid ID: If the provided time log ID does not exist, the API may return an error indicating the resource was not found. Verify the ID before updating.
- Missing Required Fields: Start Date, End Time, and Memo are required. Omitting these will likely cause validation errors.
- Authentication Errors: Ensure the API key credential is correctly set up and has sufficient permissions.
- Date Format Issues: Using unsupported date formats might cause the API to reject the request. Use the supported "Y-M-D" format.
- Network Issues: Connectivity problems can prevent successful API calls; check network access and proxy settings if applicable.
Links and References
- Cloodo Worksuite API Documentation (assumed based on base URL)
- n8n documentation on Creating Custom Nodes
