Actions46
- Calendar Actions
- ClientProfile Actions
- Company Actions
- Invoice Actions
- Project Actions
- Role Actions
- Status Actions
- Task Actions
- Time Entry Actions
- Trigger Actions
- User Actions
Overview
This node integrates with the Scoro API to perform various operations on different resources, including tasks. Specifically, for the Task Delete operation, it allows users to delete a task by specifying its unique Task ID. This is useful in scenarios where you want to automate task management workflows, such as removing completed or obsolete tasks from your project management system.
Practical examples:
- Automatically deleting tasks that are marked as canceled in another system.
- Cleaning up test or temporary tasks created during automated processes.
- Removing tasks based on certain triggers or conditions in your workflow.
Properties
| Name | Meaning |
|---|---|
| Task ID | The ID of the task to delete. |
Output
The node outputs JSON data representing the response from the Scoro API after attempting to delete the specified task. Typically, this will confirm whether the deletion was successful or provide error details if it failed.
If the API supports binary data output (not indicated here), it would be summarized accordingly, but for this operation, the output is JSON only.
Dependencies
- Requires an active connection to the Scoro API.
- Needs an API key credential and company account ID configured in n8n credentials for authentication.
- The base URL for the Scoro API must be set in the credentials.
Troubleshooting
Common issues:
- Invalid or missing Task ID: Ensure the Task ID provided exists and is correct.
- Authentication errors: Verify that the API key and company account ID are valid and have sufficient permissions.
- Network or connectivity problems: Check internet access and Scoro API availability.
Error messages:
"Operation 'delete' for resource 'task' is not supported."— This indicates a misconfiguration or unsupported operation; verify the selected resource and operation.- API errors returned in the JSON response may include permission denied, task not found, or invalid parameters. Review the error message and adjust inputs accordingly.
Links and References
- Scoro API Documentation (for detailed API endpoints and parameters)
- n8n documentation on creating custom nodes