Actions52
- Project Actions
- Project Photo Actions
- Project Collaborator Actions
- Project Document Actions
- Project User Actions
- Project Label Actions
- Project Checklist Actions
- User Actions
- Photo Actions
- Tag Actions
- Group Actions
- Other Actions
Overview
The node connects to the CompanyCam API, specifically enabling operations related to projects within the CompanyCam platform. The "Retrieve Project" operation fetches detailed information about a specific project by its identifier. This is useful for workflows that need to access project data such as status, details, or metadata for further processing, reporting, or integration with other systems.
Practical examples include:
- Automatically retrieving project details when a new task is created in another system.
- Syncing project information into a CRM or project management tool.
- Triggering notifications or updates based on project status changes.
Properties
| Name | Meaning |
|---|---|
| notice | Informational notices displayed in the node UI indicating that some parts are not yet built or funded by a company. These notices appear for multiple operations including "retrieveProject". |
Note: The provided properties JSON only contains informational notices and no direct input parameters for the "Retrieve Project" operation. Typically, this operation would require at least a project ID as input, but it is not explicitly defined in the given snippet.
Output
The output of the "Retrieve Project" operation will be a JSON object containing the project's details as returned by the CompanyCam API. This typically includes fields such as project name, description, status, creation date, and other metadata relevant to the project.
If the node supports binary data output (e.g., photos or documents related to the project), it would be included separately, but there is no indication of binary output for this operation in the provided code.
Dependencies
- Requires an API key credential for authenticating requests to the CompanyCam API.
- The base URL for API requests is
https://api.companycam.com/v2. - No additional external dependencies are indicated.
Troubleshooting
- Missing or invalid API credentials: Ensure that a valid API key credential is configured in n8n for the CompanyCam node.
- Project not found errors: Verify that the project ID used for retrieval exists and is accessible with the provided credentials.
- API rate limits or connectivity issues: Check network connectivity and API usage limits imposed by CompanyCam.
- Incomplete implementation notices: The node displays notices indicating some features are not fully built; users should be aware that certain operations might have limited functionality.
Links and References
- CompanyCam API Documentation (for detailed API endpoints and data structures)
- n8n Documentation (for general guidance on using custom nodes and credentials)