Connect Quriobot to Integrately

Do you want to connect Quriobot to that awesome service of Integrately? We support that!!

It’s a combination of creating an incoming webhook and using the created Webhook URL in the Quriobot Control Room in the response connection, together with the Bot Variables (read at the bottom on how to pass data to your webhook!)

  1. Follow the guide to create the Integrately incoming webhook endpoint. It’ll look something like this:
<a data-identifyelement="479" href="https://integrately.com/....." data-index="3">https://integrately.com/.....</a>
  1. Log in to your Quriobot account, select your bot and do to the Connections & Notifications tab -> Response connections and add Response Action and select JSON Webhook in the dropdown for the Response action types
  2. Insert previously copiedWebhook URL into the URL field
  3. See the bottom of this page on how to use your own Variables in the JSON body, but just adding the following is enough for this test and click Save! 1.
{
    "Name": "{{Name}}",
    "Email": "{{Email}}",
    "Telephone": "{{Telephone}}",
    "chatTranscriptURL": "{{chatTranscriptURL}}",
    "chatTranscriptMarkdown": "{{chatTranscriptMarkdown}}"
}
_Please note that here we use **Name**, **Email**, and **Telephone**[variables](/en/support/solutions/articles/35000072846), but you can add you own ones._
  1. To test the connection go to your bot by clicking on Preview ( and as there are no advanced conditions on when this Response connection should be triggered it will be triggered every time a bot is completed).
  2. Now go to yourIntegrately to see if the webhook was caught!
  3. Great success! So now you have set up the connection ofQuriobot to Integrately

That’s it! Have fun connecting Quriobot to the rest of the world!

Date step type answers format

If you use date step type answers in the Integrately payload, for easier parsing of the date you can use the ‘value’ Variable syntax:

{{variable.value}}

This way it will be in ISO date format which is parsed in a stable way.

Edit this page