Three ways to send SMS
CLIENT
suitable for enterprises without software developers.
Just Login Client and use the following features.

- choose your account (multiple SMS accounts may be created)
- enter phone numbers or upload File
- select whether to remove duplicates
- enter message content, it will simultaneously display the length of the message characters and the number of message (known more see Character Limit).
- select send time (support Real-time and Timing)
API
suitable for enterprises with software developers.
- choose SMS Single Send or SMS Batch Send and you can refer to the simple code example for test (Errors click here)
- you can choose to Pull DR or we Push DR
- if you choose Push DR please set the account webhook through us or through our client 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 Web 、 SMPP Tool、SMPP 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.
Code | Description |
---|---|
0 | Success |
1 | Message Length is invalid |
8 | Invalid IP (usual the requested IP address is not whitelisted) |
14 | Invalid Password |
15 | Invalid System ID or Account Forbidden |
16 | Unkonwn Error |
more error see SMPP Error Codes
- Submitting
Code | Description |
---|---|
0 | Success |
1 | Message 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