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 perform various operations on different resources within a Scoro account. Specifically, for the Comment - Delete operation, it allows users to delete a comment by specifying its unique Comment ID. This is useful in scenarios where you want to programmatically remove outdated or irrelevant comments from your Scoro projects, tasks, or other entities.
Practical examples include:
- Automatically deleting comments that are flagged as spam.
- Cleaning up comments after a task or project is completed.
- Removing sensitive information accidentally posted in comments.
Properties
| Name | Meaning |
|---|---|
| Comment ID | The ID of the comment to delete |
Output
The output of the delete operation typically contains a JSON object confirming the deletion status. It may include fields such as success confirmation or metadata about the deleted comment. No binary data is expected from this operation.
Example output structure (conceptual):
{
"success": true,
"deletedCommentId": "12345"
}
Dependencies
- Requires an active connection to the Scoro API via an API key credential.
- The node expects configuration of the Scoro API base URL and authentication credentials in n8n.
- Network access to the Scoro API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing Comment ID will cause the operation to fail.
- Incorrect or expired API credentials will result in authentication errors.
- Network connectivity problems can prevent the node from reaching the Scoro API.
Error messages:
"Operation 'delete' for resource 'comment' is not supported."β indicates a misconfiguration or unsupported operation; verify the selected resource and operation.- Authentication errors usually indicate invalid API keys or insufficient permissions; check and update credentials.
- If the comment ID does not exist, the API may return a "not found" error; ensure the Comment ID is correct.