Documentation
-
CMS Plugins
-
API | Developers
-
- Prochainement
-
Printers and Accessories
-
- GPRS connection settings SIM Card 2G 3G 4G
- Image and logo printing
- Internet connection
- Internet connection with a Ethernet cable (LAN RJ45)
- Mention "Printed using Expedy.io".
- Print PDF
- QR Code / Barcode
- QuickStart Cloud Printer 58mm
- QuickStart Installation Cloud Printer 80mm
- Send a test print request
- Tags Settings
- Text layout | Building a receipt ticket
- WiFi Setup
-
- Cloud Print Box: Ethernet cable and WiFi connection
- Connecting an ESC POS ticket printer to the Cloud Print Box adapter
- Image and logo printing
- Installing the Cloud Print USB Adapter
- Mention "Printed using Expedy.io".
- Print PDF
- QR Code / Barcode
- Send a test print request
- Tags Settings
- Text layout | Building a receipt ticket
-
General Terms
-
Expedy TMS
- Prochainement
-
Expedy M2M SIM Card
-
Raspberry Pi
-
Uber Eats printer
-
DoorDash Printer
-
Restaurant delivery platforms
Send SMS request
This request sends an SMS to a French mobile number:
0600000000 or 0700000000
To send SMS outside France, please contact customer service.
Request URL: http://www.expedy.fr/api/sms
Parameter | Description | Format |
sms_sender | Sender ID appearing on the recipient’s phone. | 11 characters (A-Z,0-9) |
sms_msg | Message content. If the message exceeds 160 characters, it is split into as many SMS messages as necessary. Up to 10 messages maximum. | max 10x 160 characters |
sms_phone | Recipient number | 10 digital ex: 0601010101 |
PHP code example
// SEND AN SMS ( api/sms ) define('DS_SERVICE', 'api/sms'); // {{{wpml_tag_1}}} $sms_sender, 'sms_phone' => $sms_phone, 'sms_msg' => $sms_msg ); $data_request = array( 'sid' => SID, 'token' => TOKEN, 'params' => $data_params ); // Request execution $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, DS_SERVICE_URL); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data_request)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $result = curl_exec ($ch); curl_close ($ch); ?>