Overview
This node integrates with the BimeBazar CRM system to perform various lead management actions. Specifically, it allows users to:
- Change the segment of an existing lead.
- Change the status and sub-status of a lead.
- Archive a lead.
- Create a new lead with detailed attributes.
Such functionality is beneficial in automating CRM workflows, keeping lead data up-to-date, and managing lead lifecycle stages efficiently. For example, a marketing automation workflow could automatically move leads into different segments based on their behavior or archive leads that have become inactive.
Properties
| Name | Meaning |
|---|---|
| Lead ID | The unique identifier of the lead to update. |
| Segment ID | The ID of the new segment to assign to the lead (used only when changing lead segment). |
Output
The node outputs JSON objects for each input item processed. The structure includes:
success: Boolean indicating if the operation was successful.operation: The name of the performed operation (changeLeadSegmentin this case).leadId: The ID of the lead affected.segmentId: The new segment ID assigned to the lead.response: The raw response from the CRM API call, containing details about the updated lead segment.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the BimeBazar CRM API.
- The node makes HTTP POST requests to the CRM's REST API endpoints.
- The base URL and API token must be configured in the node credentials.
- Proper network access to the CRM API endpoint is necessary.
Troubleshooting
Common Issues:
- Invalid or missing Lead ID or Segment ID will cause the API request to fail.
- Incorrect or expired API authentication token will result in authorization errors.
- Network connectivity issues can prevent successful API calls.
Error Messages:
- Errors returned from the CRM API are captured and included in the output if "Continue On Fail" is enabled.
- Typical error messages may include "Unauthorized", "Lead not found", or "Invalid segment ID".
Resolutions:
- Verify that the Lead ID and Segment ID exist and are correct.
- Ensure the API key credential is valid and has sufficient permissions.
- Check network connectivity and firewall settings.
- Enable "Continue On Fail" to handle errors gracefully during batch processing.
Links and References
- BimeBazar CRM API Documentation (hypothetical link as no direct link provided)