> ## Documentation Index
> Fetch the complete documentation index at: https://docs.heybot.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Mensajes interactivos

En esta referencia, se describen los eventos de activación y el contenido de la carga útil del webhook messages de la cuenta de WhatsApp Business para las respuestas a mensajes interactivos.

## **Cuando ocurre**

* Un usuario de WhatsApp toca una fila de un mensaje de lista interactivo.
* Un usuario de WhatsApp toca un botón en un mensaje con botón de respuesta interactiva.

## **Ejemplos**

**Respuesta a mensaje de lista interactivo.**

<img width="400" src="https://mintcdn.com/heybot/HaTBX4ZlRWUgM632/images/interactive_list_options.webp?fit=max&auto=format&n=HaTBX4ZlRWUgM632&q=85&s=7e1b83cdcbeaefdbaee7285d766b8685" data-path="images/interactive_list_options.webp" />

```json theme={null}
{
  "id": "wamid.HBgLMTY1MDM4Nzk0MzkVAgASGBQzQUQ0N0VFMDA2MTQ0RkJFNkNDNAA=",
  "timestamp": 1750275992,
  "channel": "whatsapp",
  "event": "message",
  "type": "interactive",
  "interactive": {
    "type": "list_reply",
    "list_reply": {
        "id": "<ROW_ID>",
        "title": "<ROW_TITLE>",
        "description": "<ROW_DESCRIPTION>"
    }
  },
  "from": {
    "id": "16505551234",
    "display_name": "Sheena Nelson",
    "phone_number": "16505551234",
    "username": null
  },
  "to": {
    "phone_number": "15550783881",
    "phone_number_id": "106540352242922"
  }
}
```

**Respuesta a mensaje interactivo**

<img width="300" src="https://mintcdn.com/heybot/HaTBX4ZlRWUgM632/images/quick_reply_option.webp?fit=max&auto=format&n=HaTBX4ZlRWUgM632&q=85&s=5f170c07c1e862c9ba4120859558ae4a" data-path="images/quick_reply_option.webp" />

```json theme={null}
{
  "id": "wamid.HBgLMTY1MDM4Nzk0MzkVAgASGBQzQUQ0N0VFMDA2MTQ0RkJFNkNDNAA=",
  "timestamp": 1750275992,
  "channel": "whatsapp",
  "event": "message",
  "type": "interactive",
  "interactive": {
    "type": "button_reply",
    "button_reply": {
        "id": "change",
        "title": "Change"
    }
  },
  "from": {
    "id": "16505551234",
    "display_name": "Sheena Nelson",
    "phone_number": "16505551234",
    "username": null
  },
  "to": {
    "phone_number": "15550783881",
    "phone_number_id": "106540352242922"
  }
}
```
