Navigation Menu
Messaging Services / RCS

RCS Rich Messaging Documentation

RCS (Rich Communication Services) delivers native rich messaging on Android devices. Setup verified business profiles, send rich media cards, and leverage quick-reply interactive templates.

Send a Rich Card

Send an image card with titles, descriptions, and action buttons to a user.

curl -X POST https://api.msgx.in/v1/rcs/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+919999999999",
    "card": {
      "title": "Cloud Runners New Arrival",
      "description": "Available in your size. Limited offer.",
      "media_url": "https://site.com/image.jpg",
      "suggestions": [
        {
          "type": "reply",
          "text": "View Details",
          "postback": "view_product_1"
        }
      ]
    }
  }'