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 within a Scoro account. Specifically, for the Project - Delete operation, it allows users to delete a project by specifying its unique Project ID. This is useful in scenarios where projects are completed, canceled, or no longer needed and should be removed from the system to keep data clean and up-to-date.
Practical examples include:
- Automatically deleting projects that have been marked as obsolete in an external system.
- Cleaning up test or demo projects created during automated workflows.
- Removing projects after archiving their data elsewhere.
Properties
| Name | Meaning |
|---|---|
| Project ID | The ID of the project to delete |
Output
The node outputs JSON data representing the response from the Scoro API after attempting to delete the specified project. 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 generally relate to file attachments or similar, but for the delete operation, only JSON response data is expected.
Dependencies
- Requires an active connection to the Scoro API via an API key credential.
- The node expects configuration of the base URL and authentication credentials for Scoro.
- No additional external dependencies beyond the Scoro API and n8n's HTTP request capabilities.
Troubleshooting
Common issues:
- Invalid or missing Project ID: Ensure the Project ID provided exists and is correct.
- Authentication errors: Verify that the API key and other credentials are valid and have sufficient permissions.
- Network or connectivity problems: Check internet access and Scoro service status.
Error messages:
"Operation 'delete' for resource 'project' is not supported."— This indicates a misconfiguration or unsupported operation; verify the resource and operation names.- API errors returned from Scoro (e.g., 404 Not Found) usually mean the project does not exist or has already been deleted.
Resolving these typically involves verifying input parameters, credentials, and network connectivity.