Using HTTP allows you to send and receive data during the conversation and transfer it in real-time to an external system.
Here's how it works:
Write a description that identifies the data to be sent.
Define the URL endpoint.
Decide whether to use the POST or GET method.
Write a JSON payload with the variables you want to send.
That's it! You now have the data in your external system, allowing for seamless integration and data exchange between your chatbot and external systems using HTTP.
For Response
If you use GET - you can response the data to chat flow like this:
JSON
{"data":{"text":"hey"}}
β
All the dynamic data you send to this point will be available throughout the flow.
For example, if you send: name parameter,
you can use the dynamic data at any stage in the flow using the # symbol - {{#name}} .
β