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 interacts with the Scoro API to perform various operations on different resources. Specifically, for the ClientProfile resource with the Delete operation, it deletes a client profile identified by its unique ID. This is useful in scenarios where you need to programmatically remove outdated or incorrect client profiles from your Scoro account, helping maintain clean and accurate client data.
Practical examples include:
- Automatically deleting client profiles that are no longer active.
- Cleaning up test or duplicate client profiles as part of a workflow.
- Integrating with other systems to synchronize client data deletions.
Properties
| Name | Meaning |
|---|---|
| Client Profile ID | The unique identifier of the client profile to delete |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide details about the deleted client profile. The exact structure depends on the Scoro API response but generally includes status information.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Scoro API.
- Needs the base URL and company account ID configured in the credentials.
- The node uses HTTP requests to communicate with the Scoro API endpoints.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Client Profile ID will cause the API to return an error.
- Missing or incorrect API credentials will prevent authentication.
- Network connectivity problems can cause request failures.
Error messages:
"Operation 'delete' for resource 'clientProfile' is not supported."— This indicates a misconfiguration or unsupported operation; ensure the correct resource and operation are selected.- API errors related to authorization or missing parameters usually indicate credential or input property issues.
Resolutions:
- Verify the Client Profile ID exists in Scoro before attempting deletion.
- Confirm API credentials are correctly set up and have sufficient permissions.
- Check network connectivity and Scoro service status.
Links and References
- Scoro API Documentation
- n8n documentation on creating custom nodes