> For the complete documentation index, see [llms.txt](https://developer.konverse.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.konverse.ai/platform/bot-webhooks.md).

# Bot Webhooks

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

![Settings for Web-hook](/files/SFcumdeI7HlLT0jdeQ9d)

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

### Text

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

### Attachment

```json
{
	"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`    | <p><code>video/mp4</code>, <code>video/3gpp</code><br></p><p><strong>Notes:</strong></p><ul><li>Only H.264 video codec and AAC audio codec is supported.</li><li>Only videos with a single audio stream are supported.</li></ul> |

### Stop Propagation

```json
{
	"konverse": {
		"stopPropagation": true
	}
}
```
