Scoro icon

Scoro

Interact with the Scoro API

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 no longer needed or were created by mistake and need to be removed from the system.

Practical examples include:

  • Automating cleanup of completed or cancelled projects.
  • Integrating with other systems to synchronize project lifecycle events, such as deleting projects when they are archived elsewhere.
  • Managing project data programmatically without manual intervention in the Scoro UI.

Properties

Name Meaning
Project ID The ID of the project 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 project. 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 active connection to the Scoro API via an API key credential.
  • Needs configuration of the base URL and authentication credentials for the Scoro API within n8n.
  • The node relies on internal helper functions to route and handle the API requests based on resource and operation.

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 company account ID are correctly configured.
    • Unsupported operation error: If the operation or resource is not recognized, check that the node version supports the requested action.
  • Error messages:

    • Operation 'delete' for resource 'project' is not supported. β€” This indicates the node does not support the specified operation-resource combination; verify inputs.
    • API errors returned from Scoro (e.g., 404 Not Found) usually mean the project ID does not exist or has already been deleted.

Links and References

Discussion