CompanyCam icon

CompanyCam

Node for connecting CompanyCam

Overview

This node connects to the CompanyCam API and allows users to manage projects within their CompanyCam account. Specifically, the "Delete Project" operation enables users to remove a project by specifying its unique Project ID. This is useful for cleaning up old or completed projects that are no longer needed, helping maintain an organized workspace.

Practical examples:

  • Automatically deleting projects that have been marked as completed in another system.
  • Removing test or temporary projects created during development or data import processes.

Properties

Name Meaning
Project ID The unique identifier of the project to delete.

Output

The output of this operation typically contains JSON data returned from the CompanyCam API after attempting to delete the specified project. This may include confirmation of deletion or error details if the operation failed. The node does not output binary data.

Dependencies

  • Requires an active connection to the CompanyCam API.
  • Needs an API authentication token credential configured in n8n to authorize requests.
  • The base URL for API requests is https://api.companycam.com/v2.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Project ID will result in an error response from the API.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity problems can prevent successful API calls.
  • Error messages and resolutions:

    • "Unauthorized" or "Authentication failed": Verify that the API key credential is correctly set up and has sufficient permissions.
    • "Project not found": Check that the Project ID is correct and that the project exists.
    • "Request failed" or "Network error": Ensure stable internet connection and that the CompanyCam API service is reachable.

Links and References

Discussion