X Lead Connect
  1. SMS
X Lead Connect
  • Overview
  • API Key Integration
  • SMS
    • Message Delivery Flow
    • Send Message
      POST
    • Get Usage Report
      GET
  • MMS
    • Message Delivery Flow
    • Send Message
      POST
    • Get Usage Report
      GET
  • eDM
    • Message Delivery Flow
    • Send Message
      POST
  • Account Management
    • Get Points Balance
      GET
    • Get Quota Balance
      GET
  1. SMS

Send Message

POST
https://api.connect.xleadfunnel.com/v1/sms/send
This is to send SMS message, each request is to send to one recipient.

Request

Body Params application/json

Example
// send to Taiwan
{
    "country_code": "886",
    "mobile": "0912345678",
    "content": "Hi, 我是陳大文。"
}

// send to Hong Kong
{
    "sender": "xlead",
    "country_code": "852",
    "mobile": "91234567",
    "content": "Hi, this is David Chan。",
    "send_also_ofca_registers": false
}

Responses

🟢200Success
application/json
Body

Example
// valid send request
{
    "rc": 100,
    "rm": "OK",
    "ref_id": "145737475"
}

// invalid send request
{
    "rc": -100,
    "rm": "Missing sender, your region requires Sender ID to send out messages."
}
Modified at 2025-12-09 06:11:48
Previous
Message Delivery Flow
Next
Get Usage Report
Built with