---
title: "Send an interactive message to an active conversation"
method: POST
path: "/api/ext/v3/conversations/messages/interactive"
tags: ["Conversations"]
---

# Send an interactive message to an active conversation

`POST /api/ext/v3/conversations/messages/interactive`

## Request body

- SendInteractiveMessageRequest — Represents an interactive message.
  - `target` string, required — The target recipient in the following formats: * **`ConversationId`**: The unique ID of a conversation. * **`PhoneNumber`**: The recipient's phone number (e.g., `14155552671`). * **`Channel:PhoneNumber`**: A combination of the channel (name or phone number) and the recipient's phone number (e.g., `MyChannel:1415552671`, `123456789:1415552671`).
  - `type` string, required — Message type: "buttons" or "list".
  - `button_message` ButtonsMessageDto — Represents a message with buttons in a conversation.
    - `header` ButtonsMessageHeaderDto — Represents the header of a buttons message.
      - `type` string, nullable
      - `text` string, nullable
      - `media` ButtonsMessageHeaderMediaDto — Represents media information inside the header.
        - `url` string, nullable
        - `file_name` string, nullable
    - `body` string, nullable — The body text of the message.
    - `footer` string, nullable — The footer text of the message.
    - `buttons` ButtonsMessageButtonsDto[], nullable — The list of buttons.
      - `text` string, nullable
  - `list_message` ListMessageDto — Represents a list type message in a conversation.
    - `header` string, nullable
    - `body` string, nullable
    - `footer` string, nullable
    - `button_text` string, nullable
    - `sections` ListMessageSectionDto[], nullable
      - `title` string, nullable
      - `rows` ListMessageSectionRowDto[], nullable
        - `title` string, nullable
        - `description` string, nullable

## Response `200`

Returns the message result.

- SendInteractiveMessageResponse — Response model for sending an interactive message.
  - `message` MessageDto — Represents a message event within a conversation.
    - `text` string, nullable — The text content of the message.
    - `type` string, nullable — The message type.
    - `timestamp` string, nullable — The timestamp string of the message.
    - `owner` boolean — Indicates whether the message was sent by the owner.
    - `status` string, nullable — The current status of the message.
    - `avatar_url` string, nullable — The avatar URL of the sender.
    - `assigned_id` string, nullable — The assigned operator ID.
    - `operator_name` string, nullable — The operator's display name.
    - `failed_detail` string, nullable — Details of a failed message delivery, if any.
    - `bot_type` string, nullable — The type of bot, if applicable.
    - `id` string, nullable — The unique identifier of the conversation event.
    - `created` string, date-time — The creation timestamp of the event.
    - `conversation_id` string, nullable — The associated conversation identifier.
    - `ticket_id` string, nullable — The associated ticket identifier.
    - `event_type` string, nullable — The type of event (e.g., message, ticket, broadcast).

## Other responses

- `400` — The request is invalid.
- `401` — The request is unauthorized.
- `403` — The request is forbidden.
- `429` — Too many requests. Either the rate limit has been exceeded or usage limits have been reached.
- `500` — Unexpected error occurred. Please try again.

---

[API](https://skmtc.dev/wati/apis/api-documentation-v3.md) · [All operations](https://skmtc.dev/wati/apis/api-documentation-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wati/api-documentation-v3/revisions/dee16d2c7d41/schema)
