1. Go to this page and download the library: Download doelmi/medansms-client-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$options = [
'page' => '2', //halaman yang ingin ditampilkan [default : 1]
'rows' => '15', //jumlah baris yang ingin ditampilkan [default : 10]
'search' => 'pesan yang dicari', //isi pesan yang ingin dicari
'startDate' => '08 Okt 2020', //format : d M Y
'endDate' => '12 Okt 2020' //format : d M Y
];
$response = $smsReguler->outbox($options);
var_dump($response);
$idSendSMS = 'id-unik-sms'; //bentuknya seperti ini : e302fc0475c2b15a5aeec475e08dad05
$response = $smsReguler->outboxDetail($idSendSMS);
var_dump($response);
$idSendSMS = 'id-unik-sms'; //bentuknya seperti ini : e302fc0475c2b15a5aeec475e08dad05
$response = $smsReguler->deleteOutbox($idSendSMS);
var_dump($response);