Konverse AI Developer Hub
  • Konverse AI Developer Hub
  • Getting Started
    • Authentication
    • Errors
    • Rate Limit
  • Webhooks
    • Webhook Endpoints
  • Platform
    • Embedded Functions
      • Send Text Message
      • Send Quick Reply
      • Set Variables
      • Send Choice
      • Send Cards
      • Stop Propagation
      • Query a Dataset
      • Jump To Story
      • Query a Google Sheet
    • Datasets
    • Bot Webhooks
  • Messaging Channels
    • Introduction to Channels
    • Web Chat
    • Facebook Messenger
    • WhatsApp
      • Send WhatsApp Notifications
      • Send Session Message
    • Line
  • App Integration
    • Android App Integration
Powered by GitBook
On this page
  • Text
  • Attachment
  • Stop Propagation

Was this helpful?

  1. Platform

Bot Webhooks

PreviousDatasetsNextIntroduction to Channels

Last updated 3 years ago

Was this helpful?

Konverse platform lets you Webhook any session data from the bot to your desired endpoint

Konverse platform also allows to instruct bot to send text, quick reply or attachment through the Webhook response. Please refer to response formats below.

Text

{
	"konverse": {
		"type": "text",
		"text": ["Hello from webhook"]
	}
}

Attachment

{
	"konverse": {
		"type": "attachment",
		"attachment": {
			"url": "https://cdn.pixabay.com/photo/2020/06/17/12/33/watermelon-5309310_960_720.png",
			"mime": "image/jpeg"
		}
	}
}

Supported Mime types

Media
Supported Content-Types

audio

audio/aac, audio/mp4, audio/amr, audio/mpeg

document

application/pdf

image

image/jpeg, image/png

sticker

image/webp

video

video/mp4, video/3gpp

Notes:

  • Only H.264 video codec and AAC audio codec is supported.

  • Only videos with a single audio stream are supported.

Stop Propagation

{
	"konverse": {
		"stopPropagation": true
	}
}
Settings for Web-hook