Introduction

Webhooks reference

A great feature of Kindly is the ability to connect to third-party applications. This is achieved using webhooks. Webhooks can be added to any dialogue or fallback, and are simply sent by HTTP POST by the Kindly backend to a specific URL.

For a step-by-step introduction to webhooks, check out the Getting started with webhooks

See Example: Chat transcript webhook for an example of a webhook app.

Request payload

The POST request payload from Kindly to your webhook endpoint is a JSON serialized object containing multiple fields.

Here are the most important payload fields and what they represent:

  • organization_id - The ID of the organization to which the chat belongs.
  • bot_id - The ID of the bot to which the chat belongs.
  • chat_id - The chat ID is a UUID that defines the chat the message belongs to. This ID can be found in the inbox, in the URL of the page.
  • user_id - The user ID is a string, provided by the chat client that defines the user who triggered the webhook.
  • chat_labels - The labels associated with this chat.
  • exchange - The dialogue (exchange) object that Kindly found and replied with when triggered by the webhook.
    • exchange_id - The exchange id is a UUID that defines the dialogue that triggered the webhook. It can be found in the URL of the build section, when editing the desired dialogue.
    • language_code - The language code indicating the dialogue language.
  • message - The exact phrase that the user wrote to trigger the webhook.
  • attachments - List of file attachments that user or agent has uploaded to a chat. Read more about it here
  • context- The collected chat context of the conversation. Read more about context Context memory.
  • _links - Linked REST resources object (f.ex. chat transcripts).
    • chat - If your webhook service requires more information about the chat or the previous messages, this can be fetched from the Chat Transcript API with a GET request to the url in _links.chat. Chat Transcript API.
  • source - Source is the name of the chat client that triggered the webhook. It can be one of the following web (chat bubble in the browser), facebook (Facebook Messenger), slack (Slack), app (Application API) or test (app.kindly.ai test chat bubble).
  • web_path - The current URL path for Kindly Chat web clients, which is useful if you are implementing search and want to bias it towards documents related to the current page.
  • web_host - The current URL host for Kindly Chat web clients.
  • web_url - The current URL for Kindly Chat web clients.

Response payload

An incoming webhook should be answered with a 200 OK JSON response.

Example

Here is an example response showing some of the most common fields.

JSON


Reply

A string of text that will be displayed as a message from the bot.

JSON


To split the message into paragraphs (seperate bubbles) use two consecutive new lines, i.e. \n\n.

JSON


Buttons

You can attach buttons to the reply. You can define the same types of buttons as you can do in the platform.

It's important to note that the button object needs to be wrapped in an array, even if you only send a single button.

JSON


You can also automatically define additional context when a button is clicked, using the context key on any button.

JSON


Image carousel

You can send one or multiple images.

JSON


The image_carousel field must be an array of image objects. Every object must contain metadata for a single image.

You can attach buttons to specific images in the carousel. We currently support:

  • trigger_dialogue
  • link
  • quick_reply

Form

You can integrate a form into the bot reply. You can include up to 5 fields per form.

JSON

  • language_code: Specifies the language used in the form.
  • texts: Contains text elements for various parts of the form:
    • title: Title of the form.
    • submit_button_text: Text for the submit button.
    • cancel_button_text: Text for the cancel button.
    • cancel_text: Message when the form is exited.
    • error_text: Message when an error occurs.
    • unanswered_text: Message when the form is left unanswered.
  • fields: Array of objects, each representing a field in the form:
    • required: Indicates if the field is mandatory (true or false).
    • order: Numerical order of the field in the form.
    • slug(optional): A unique identifier for the field.
    • affix(optional): Text or value affixed to the input field.
    • input_type: Defines the type of the field, options include:
      • TEXT: For text input.
      • EMAIL: For email addresses
      • NUMBER: For numerical values
      • RANGE: For range values
      • SELECT: For selection
      • CHECKBOX: For checkboxes
      • RADIO: For radio buttons
      • FILE: For file uploads
    • texts: Contains the following attributes for field text customization:
      • label: The primary label text for the field.
      • help_text (optional): Additional help text for the field.
      • placeholder_text (optional): Placeholder text displayed inside the field.
      • required_text (optional): Text displayed for required fields.
      • affix_value (optional): Affixed text or value associated with the field.
    • validators (optional): List of objects defining validation rules for the field, which may include:
      • min_length: Minimum length requirement.
      • max_length: Maximum length limit.
      • maximum: Upper numerical limit.
      • minimum: Lower numerical limit.
      • pattern: Regex pattern for validation.
      • preset: Predefined validation type.
      • texts: Custom messages for validation feedback.
    • attributes (optional): Additional properties for the field, including:
      • default_value: Default value of the field.
      • step: Step size for numerical inputs.
      • options: List of options:
        • value: Value of the option.
        • label: Display label of the option

New context

If your webhook service computes some new value that you want the chatbot to remember, you can send it as JSON in new_context.

If the key you are adding already exists in the bot's context memory, the value will be overwritten.

JSON


Trigger dialogue

Instead of sending a reply defined by the webhook server, you can also trigger a dialogue that you have defined in the Kindly platform.

JSON


or

JSON


The dialogue ID is a UUID, and can be found on the page where you edit the dialogue, or in the URL of the page.

The dialogue slug is an optional value picked by you that can be used in place of the dialogue UUID. You can set the dialogue slug on dialogues with the trigger type.

Labels

You can attach some labels to the chat by passing a labels field:

JSON


You have to use label names. The labels need to exist within the Workspace to be attached, so if they can't be found they won't get triggered but they will not cause any error (i.e. they will just be omitted).

Attachments

The list consists of Attachment objects that include a temporary signed url which is available for 30 minutes after the webhook payload is sent. This means that if you want to keep these attachments you need to download them from the given url and store them somewhere. The supported file types are raw text, documents, images, and PDF.

Here is an example:

TypeScript


Settings

You can also pass some Chat settings:

  • chatbubble_hide_input_field to disable the Chat input field. Make sure the user has a way to continue the conversation, for example by providing a button that triggers another dialogue.
JSON


Smart Webhooks

This feature is currently in Beta. Any feedback you might have can be sent on email directly to [email protected] and [email protected].

You can utilize our Smart Webhooks (Beta) functionality by passing some data as aiReply.data. You can find an example below:

JSON


In this scenario, the reply field (if passed) will be ignored because the AI will generate the reply based on the data you provide in the field.

Image (deprecated in favor of "Image carousel")

You can also send a single image.

JSON


The image in the object needs to be a valid image URL. The alt text is the text Kindly will show if the image is unavailable.