CompanyCam icon

CompanyCam

Node for connecting CompanyCam

Overview

The node is designed to interact with the CompanyCam API, a platform for managing project photos, documents, users, tags, and other related resources. Specifically, the "Delete a Tag" operation under the "Tag" resource allows users to remove an existing tag from their CompanyCam account or project.

This operation is useful in scenarios where tags are no longer relevant or were created by mistake, helping keep the tagging system clean and organized. For example, if a tag was used temporarily during a project phase but is no longer needed, this operation can delete it to avoid clutter.

Properties

Name Meaning
Resource The type of entity you want to work with; here, it should be set to "Tag".
Operation The action to perform on the selected resource; here, "Delete" indicates removing a tag.

Note: The provided properties JSON only contains notices indicating that some parts are not yet built or are informational messages. No specific input fields for identifying which tag to delete (e.g., tag ID) are shown in the provided snippet. Typically, such an operation would require a tag identifier as input.

Output

The output of the "Delete a Tag" operation typically includes a JSON object confirming the deletion status. This might be a success message or an empty response indicating the tag was deleted successfully.

If the node supports binary data output, it is not indicated in the provided code or descriptions, so it is assumed that the output is purely JSON-based.

Dependencies

  • Requires an active connection to the CompanyCam API.
  • Needs an API key credential configured in n8n to authenticate requests.
  • The base URL for API requests is https://api.companycam.com/v2.
  • The node sends and expects JSON-formatted data.

Troubleshooting

  • Missing or invalid API credentials: Ensure that the API key credential is correctly set up in n8n and has sufficient permissions.
  • Tag not found error: If attempting to delete a tag that does not exist or has already been deleted, the API may return an error. Verify the tag ID before deletion.
  • Network issues: Check internet connectivity and firewall settings that might block access to the CompanyCam API.
  • Incomplete implementation notice: The provided property definitions include notices stating that some parts are not yet built. This might mean the node or operation is partially implemented and could lack full functionality.

Links and References

Discussion