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 users to list projects stored in their CompanyCam account. It allows searching projects by address or title and supports pagination to navigate through large sets of project data.
This node is beneficial when you want to automate retrieval of project information from CompanyCam for reporting, integration with other tools, or syncing project data into your workflows.
Example use cases:
- Automatically fetch a list of projects matching a specific address or keyword.
- Retrieve paginated project lists to process or display in external dashboards.
- Integrate project data into CRM or project management systems.
Properties
| Name | Meaning |
|---|---|
| Query | Search term to filter projects by Address line 1 or Title (e.g., "2600 Benjamin Franklin Pkwy") |
| Additional Fields | Optional parameters to customize the request: |
| - Page | The page number of results to retrieve (for pagination) |
| - Per Page | Number of results per page to return (controls page size) |
Output
The node outputs JSON data representing a list of projects retrieved from CompanyCam. Each item in the output array corresponds to a project object containing details such as project ID, title, address, and other metadata as provided by the CompanyCam API.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the CompanyCam API.
- The base URL used is
https://api.companycam.com/v2. - Proper configuration of the API key credential within n8n is necessary for successful authentication.
Troubleshooting
- Empty results: Ensure the query string is correct and matches existing projects. Also verify pagination parameters are set properly.
- Authentication errors: Confirm that the API key credential is valid and has sufficient permissions.
- Rate limiting or API errors: Check CompanyCam API status and usage limits; handle errors gracefully in workflows.
- Invalid parameter values: Make sure page and per_page fields are numeric and within allowed ranges.