Actions50
- Status Actions
- Task Actions
- Calendar Actions
- ClientProfile Actions
- Comment Actions
- Company Actions
- Invoice Actions
- Project Actions
- Role Actions
- Time Entry Actions
- Trigger Actions
- User Actions
Overview
This node integrates with the Scoro API to create comments associated with various modules such as tasks or projects. It is useful for automating the addition of comments within a Scoro workspace, enabling users to programmatically document updates, feedback, or notes linked to specific objects in different modules.
Practical examples include:
- Automatically adding status update comments to project tasks when triggered by external events.
- Logging client communication notes under client profiles.
- Creating audit trail comments on invoices or time entries.
Properties
| Name | Meaning |
|---|---|
| Module | The module to which the comment belongs (e.g., tasks, projects). |
| Object ID | The unique identifier of the object within the specified module to which the comment relates. |
| User ID | The identifier of the comment owner. Required when authenticating via an API key. |
| Comment | The textual content of the comment to be created. |
Output
The node outputs JSON data representing the newly created comment object as returned by the Scoro API. This typically includes details such as the comment's ID, content, associated module and object IDs, user information, timestamps, and any other metadata provided by the API.
No binary data output is involved.
Dependencies
- Requires connection to the Scoro API using valid credentials including:
- Base URL of the Scoro instance.
- Company account identifier.
- An API authentication key.
- These credentials must be configured in n8n prior to using the node.
Troubleshooting
- Unsupported Operation Error: If the operation "create" for resource "comment" is not recognized, ensure that the node version supports this operation and that the resource and operation names are correctly set.
- Authentication Failures: Missing or invalid API keys or company account IDs will cause authentication errors. Verify credentials in n8n settings.
- Missing Required Fields: Omitting required properties like Module or Object ID will result in errors from the API. Ensure all mandatory fields are provided.
- User ID Requirement: When using API key authentication, the User ID property must be supplied; otherwise, the API may reject the request.
Links and References
- Scoro API Documentation β Official API reference for understanding comment creation endpoints and payloads.
- n8n Documentation β Guidance on setting up credentials and using custom nodes.