Bot Webhooks

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

MediaSupported 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
	}
}

Last updated