Any questions left?
Offices in Kyiv, Warsaw, London
Our team will be happy to answer any questions you may have
How to connect your Kwizbot chatbot to popular CRM and ERP systems
You need an event in the external system to trigger the bot to send something to the user.It might be necessary for:
In general, these objectives can be met the following way:
Read more about how to use the API here: Launching a bot script using the API module. And also make sure that you have obtained the user's permission to send them notifications. Read more about it here: User subscription to notifications from the bot.
Read instructions for popular CRMs here: Integration of Kwizbot with popular CRMs.
You need to receive or send data from or to an external system as part of a script. It can be necessary for:
How to implement this? In Kwizbot, we use actions.
Read more about it here: Sending data from Kwizbot using send_request and Receiving data via API using send_request.
Sometimes you need data to run a bot that is initially stored in an external system. For example, you already have a list of car brands and models, a list of your customers, or a list of branches/cities.
You can request this data every time via the API as described above. However, for bots handling many users and high traffic loads, this will cause problems because the bot will wait for the external system to fetch data, and as the number of users increases, the bot may slow down noticeably.
It would be more appropriate to retrieve all possible directory values at once in this case and then search a specific one directly in the bot without having to access an external system each time. And for the bot to have up-to-date data, synchronisation should be done every once in a while.