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

Settings for Web-hook
Konverse platform also allows to instruct bot to send text, quick reply or attachment through the Webhook response. Please refer to response formats below.
{
"konverse": {
"type": "text",
"text": ["Hello from webhook"]
}
}
{
"konverse": {
"type": "attachment",
"attachment": {
"url": "https://cdn.pixabay.com/photo/2020/06/17/12/33/watermelon-5309310_960_720.png",
"mime": "image/jpeg"
}
}
}
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:
|
{
"konverse": {
"stopPropagation": true
}
}
Last modified 1yr ago