Actions18
- Favorites Actions
- Groups Actions
- History Events Actions
- Leads Actions
- Saved Searches Actions
Overview
The "List All Groups" operation of the Omaha Homes For Sale node retrieves a list of all groups from the Lead Management system. This is useful for users who want to fetch and work with group data associated with agents or leads, such as organizing contacts or managing group memberships.
Typical use cases include:
- Displaying all available groups in a dashboard.
- Synchronizing group data with other systems.
- Filtering or segmenting leads based on their group associations.
For example, a real estate agency might use this operation to get all groups assigned to a particular agent to display them in a CRM interface.
Properties
| Name | Meaning |
|---|---|
| Additional Fields | Optional fields to filter the groups list. Currently supports: |
| - Agent Id: The identifier of the Agent record for which to retrieve groups (number). |
Output
The output is a JSON array containing group objects retrieved from the API. Each object represents a group with its details as provided by the Omaha Homes For Sale API.
The structure typically includes fields like group name, description, agent ownership, and system flags, depending on the API response.
No binary data is returned by this operation.
Dependencies
- Requires an API key credential for authentication with the Omaha Homes For Sale API.
- The node makes HTTP GET requests to the endpoint
http://www.omahahomesforsale.com/api/crm/v1/groups. - The API key must be included in the request header
"X-REW-API-Key".
Troubleshooting
Common issues:
- Invalid or missing API key will result in authentication errors.
- Providing an invalid Agent Id filter may cause the API to return no results or an error.
- Network connectivity issues can prevent successful API calls.
Error messages:
- Errors with status 400 or 401 indicate bad requests or unauthorized access; check API key validity and request parameters.
- Other HTTP errors should be inspected for detailed messages returned by the API.
Resolution tips:
- Ensure the API key credential is correctly configured in n8n.
- Verify that the Agent Id, if used, is valid and corresponds to an existing agent.
- Check network connectivity and firewall settings.
Links and References
- Omaha Homes For Sale API documentation (not provided in source, consult official docs).
- n8n HTTP Request node documentation for understanding request headers and query parameters.