ChatofyDevelopersv1.0
API KeysWebhooks
Chatofy API
/
Getting Started
API Resources
API v1.0 Live
99.99%
Developer APIMessagesSend Interactive Message

Send Interactive Message

Sends a button or list interactive message. Boosts engagement with clickable reply options.

POST/api/v1/contact/:phone/send-interactive-message

Note

Buttons can have up to 3 options. List messages can have up to 10 sections with 1-30 rows each.

Request Body Schema

application/json
interactive.typestringrequired

Type: "button" or "list"

Example:button
interactive.body.textstringrequired

Message body text

Example:Are you interested?
interactive.action.buttonsarrayrequired

Button options (max 3)

interactive.action.buttons[].typestringrequired

Always "reply"

interactive.action.buttons[].reply.idstringrequired

Button identifier

interactive.action.buttons[].reply.titlestringrequired

Button label text

Response Payload

200 OKapplication/json
successbooleanrequired

Whether request succeeded

data.message_idstringrequired

Platform message ID

data.raw.messages[].idstringrequired

Meta message ID

Code Snippets & Examples

curl -X POST "https://app.chatofy.in/api/v1/contact/+917838343515/send-interactive-message" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"interactive":{"type":"button","body":{"text":"Are you interested?"},"action":{"buttons":[{"type":"reply","reply":{"id":"yes","title":"Yes!"}},{"type":"reply","reply":{"id":"no","title":"No thanks"}}]}}}'

Was this endpoint guide helpful?

Previous Endpoint
Send Text Message
Next Endpoint
Send Media Message
© 2026 Chatofy Cloud Platform. All rights reserved.
Enterprise SLA•99.99% Guaranteed
curl -X POST "https://app.chatofy.in/api/v1/contact/+917838343515/send-interactive-message" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"interactive":{"type":"button","body":{"text":"Are you interested?"},"action":{"buttons":[{"type":"reply","reply":{"id":"yes","title":"Yes!"}},{"type":"reply","reply":{"id":"no","title":"No thanks"}}]}}}'
200 OKapplication/json
{
  "success": true,
  "data": {
    "message_id": "wamid.HBgLMTIzNDU2...",
    "raw": {
      "messaging_product": "whatsapp",
      "contacts": [
        {
          "input": "+917838343515",
          "wa_id": "917838343515"
        }
      ],
      "messages": [
        {
          "id": "wamid.HBgLMTIzNDU2..."
        }
      ]
    }
  },
  "message": "Message sent successfully"
}