Get the API key
Home
Getting Started
Knowledge Base
API Setup
Omnichannel API
- Overview
- Quickstart
- Theory
- Sender Name
- Specification
- Requests & Authentication
- Development Libraries
- SMS Message
- Viber Message
- WhatsApp Message
- Delivery Report
- Scheduled Messages
- Inbound Messages
- HELP
- API Reference
Verigator API EARLY ACCESS
SMPP
Number Lookup
Phonebook API
Bulk Messaging API
Subscription API
Account Balance API
Pricing API
Statistics API
Number Verification
Tools
FAQ
SMS Messaging API
HTTP API to send and receive SMS messages to every country in the world.
Although, this API is supported, we suggest using a more modern and feature-rich Omnichannel API for sending SMS messages.
Overview
- Make an HTTPS request to SMS Messaging API
- Check the response code and store
Message ID
to match DLR later - SMS is sent to the handset
- Handset responds with Delivery Report (DLR).
- If configured Messente forwards the DLR to the callback URL.
Features
Feature | Availability |
---|---|
Send SMS | |
Receive SMS | |
Send Flash SMS | |
Transactional and marketing messages | |
SMPP connection | |
Delivery reports | |
Schedule messages |
Get Started
Sending an SMS is super simple
# Send SMS response = api.sms.send({ "from": "MyDelivery", "to": "+44000000000", "text": "Your parcel will be delivered at 10AM" }) print("Message sent:", response.get_sms_id())
// Make HTTP call to Messente API http_build_query([ 'username' => MESSENTE_API_USERNAME, 'password' => MESSENTE_API_PASSWORD, 'from' => 'MyDelivery', 'to' => '+44000000000', 'text' => 'Your parcel will be delivered at 10AM', 'dlr-url' => MESSENTE_SMS_DLR_URL ]); $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $response = curl_exec('https://api2.messente.com/send_sms/?');
Search results
0 items found Get the API key
Home
Getting Started
Knowledge Base
API Setup
Omnichannel API
- Overview
- Quickstart
- Theory
- Sender Name
- Specification
- Requests & Authentication
- Development Libraries
- SMS Message
- Viber Message
- WhatsApp Message
- Delivery Report
- Scheduled Messages
- Inbound Messages
- HELP
- API Reference