Overview
This node integrates with the BimeBazar CRM system to manage leads. It supports operations such as archiving a lead, changing a lead's segment or status, and creating new leads. This node is useful for automating lead management workflows within n8n, such as updating lead information based on external triggers or archiving leads that are no longer active.
For example, you could use this node to automatically archive leads after a certain period of inactivity, change their status when they move through different sales stages, or create new leads from form submissions.
Properties
| Name | Meaning |
|---|---|
| Lead ID | The unique identifier of the lead to update. |
Note: The "Lead ID" property is required for the "Archive Lead", "Change Lead Segment", and "Change Lead Status" operations.
Output
The node outputs an array of JSON objects, each representing the result of processing one input item. For the "Archive Lead" operation, the output JSON includes:
success: A boolean indicating if the operation was successful (alwaystrueif no error).operation: The string"archiveLead"indicating the performed operation.leadId: The ID of the lead that was archived.response: The raw response returned by the CRM API after archiving the lead.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential to authenticate with the BimeBazar CRM API.
- The node makes HTTP POST requests to the CRM API endpoints using the base URL and API token provided in the credentials.
- Proper configuration of the API base URL and authentication token is necessary for successful operation.
Troubleshooting
Common issues:
- Invalid or missing Lead ID will cause the API request to fail.
- Incorrect or expired API credentials will result in authentication errors.
- Network connectivity problems can prevent communication with the CRM API.
Error messages:
- Errors thrown by the HTTP request helper typically include the API response message. Check the message for details such as "Unauthorized" or "Not Found".
- If the node is set to continue on failure, errors will be included in the output JSON under the
errorfield.
Resolution tips:
- Verify that the Lead ID exists in the CRM before attempting to archive.
- Ensure the API key credential is valid and has sufficient permissions.
- Confirm network access to the CRM API endpoint.
Links and References
- BimeBazar CRM API Documentation (hypothetical link for reference)