Usage Mode

Three ways to send SMS

CLIENT

suitable for enterprises without software developers.

Just Login Client and use the following features.

  1. choose your account (multiple SMS accounts may be created)
  2. enter phone numbers or upload File
  3. select whether to remove duplicates
  4. enter message content, it will simultaneously display the length of the message characters and the number of message (known more see Character Limit).
  5. select send time (support Real-time and Timing)

API

suitable for enterprises with software developers.

  1. choose SMS Single Send or SMS Batch Send and you can refer to the simple code example for test (Errors click here)
  2. you can choose to Pull DR or we Push DR
  3. if you choose Push DR please set the account webhook through us or through our client by yourself
set webhook by yourself

set webhook by yourself

SMPP

SMPP is an industry standard for sending and receiving SMS. Contact our customer service to enable this feature.

Select the appropriate node based on your server, we have two deployment nodes:

  • Singapore
  • Germany

📘

Start Trip SMPP Client WebSMPP ToolSMPP Code

Create SMPP Account

Please get in touch with us to create your own SMPP account.

SMPP Usage

  • Connect

Please get in touch with us to provide the SMPP address and port, also supports SSL

  • Binding

To send a bind request, please contact us to retrieve your SMPP System ID & Password.

CodeDescription
0Success
1Message Length is invalid
8Invalid IP (usual the requested IP address is not whitelisted)
14Invalid Password
15Invalid System ID or Account Forbidden
16Unkonwn Error

more error see SMPP Error Codes

  • Submitting
CodeDescription
0Success
1Message Length is invalid
  • Delivery Reports

look an example of the SMS parameter in the deliver_sm PDU:

  • Success
id=3211029359002 sub=0 dlvrd=0 submitDate=20240321022900 doneDate=20240321022900 state=DELIVRD[DELIVRD] err=000 text=[null]
  • Fail
id=3201639641110 sub=0 dlvrd=0 submitDate=20240320163910 doneDate=20240320163910 state=UNDELIV[UNDELIV] err=505 text=[null]

err is 000 when delivered, other numeric values are see Code List

🚧

see more about Delivery Reports