SMPP

SMPP (or Short Message Peer-to-Peer) is a protocol used for exchanging SMS messages between Short Message Service Centers (SMSCs) and applications. It enables fast, reliable delivery of SMS messages and provides a range of features for managing message traffic and monitoring delivery status.

Navixy supports SMPP v. 3.4 as a means of sending and receiving SMS messages. With SMPP, Navixy can handle large volumes of SMS traffic and offer advanced features such as message batching, message status tracking, and more.

By configuring an SMS gateway in the 'sms_gates' table of the 'google' database, you can connect Navixy to an external SMS center and utilize its messaging capabilities within Navixy platform.

The minimal Navixy JSON configuration for SMPP gateway:

owner_id: 1
 label: <any_label_here>
 type: transceiver
 provider: smpp
 params:
 {
 "addresses": ["smpp.server.com:1234"] # SMPP server address and port
 "login": <login>
 "password": <password>
 }
 enabled: 1
 class_filter: *

A more complete JSON configuration for an SMS gateway might include the following parameters:

To set up Navixy for SMS messaging, you'll need to obtain all the necessary data from your SMS provider, including passwords and other required information. Be sure to check the comments in the 'sms_gates' table for additional guidance, indicated by two slashes '//', as they may provide helpful tips for configuration.

With the proper setup and configuration, SMPP can be a straightforward way to manage SMS messaging within Navixy. If you have any questions or concerns during the process, don't hesitate to consult the Navixy documentation or reach out to their support team for assistance.

Last updated

Was this helpful?