Any questions left?
Offices: Kyiv, Warsaw, London
Connect your bot on ConnectiveOne to CRM and ERP systems using low-code solutions, expanding your business capabilities
You can integrate ConnectiveOne with your CRM (Zoho CRM, Creatio CRM, etc.) and ERP systems (Odoo, Dynamics Nav). Use the low-code capabilities of the ConnectiveOne platform for seamless integration. Let's explore typical integration options.
You need an event in an external system to trigger the bot to send something to the user. Here are some cases where this might be useful:
You can learn more about how to use the API here: Triggering a bot scenario using the API module.
Triggering a bot scenario using the API module.
Also, make sure you have the user's permission to send notifications to themе
Details about this can be found here: User subscription to bot notifications.
Instructions for popular CRMs can be found here: Integration of ConnectiveOne with popular CRMs.
During the script's operation, there may be a need to retrieve data from an external system or send it there. This could be necessary for the following purposes:
To implement this, ConnectiveOne uses actions.
For more details, read here:
1. Sending data from ConnectiveOne using send_request
2. Receiving data via API using send_request.
Sometimes, for the effective operation of the chatbot, it is necessary to retrieve data that was previously collected in external systems.
For example, you may already have a list of car makes and models, a customer database, or a list of branches and cities.
You can retrieve this data via API each time, as mentioned above. However, for chatbots with a large number of users and high load, this may cause issues. The bot will have to wait for the external system to return the necessary data, and as the number of users grows, the bot's performance may significantly slow down.
In this case, it's better to load all possible values from the database at once and perform searches directly within the bot, without the need to call the external system each time. To maintain the relevance of the information, you need to periodically synchronize the data.
Any questions left?