Source Code
SINGLE SMS API (GET)
Hajana One SMS API Support both GET method and POST method.You can integrate it easily and use for your Business.The below guide lines will help you.
Base URL:
http://www.hajanaone.com/api/sendsms.php
Important Parameters
Follow the following parameters during SMS API Integration.
Parameters | Requeired | Where it |
---|---|---|
apikey | Yes | Get your api key from your Dashboard. |
phone | Yes | Add phone num with Country code. EX: 923****25 |
sender | Yes | Enter your Mask name OR sender. |
message | Yes | Enter your message content here. |
oprater | NO (Only for Converted Number) | You can add oprater id. 1 to 5 (its only for Single SMS) 1 for Telenor, 2 for Jazz, 3 for Zong, 4 for Warid, 5 for Ufone |
Sample Code
<?php
$apikey = "ZJN*****vB";
$sender = "Hajana One";
$mobile = "923001234567";
$message = "Test SMS From Hajana One";
//Sending SMS
$url='https://www.hajanaone.com/api/sendsms.php?apikey='.api$key.'&phone='.$mobile.'&sender='.urlencode($sender).'&message='.urlencode($message);
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec ($ch);
echo $result;
?>
Complete API URL
http://www.hajanaone.com/api/sendsms.php?apikey=e35******vt6&phone=92******465&sender=XYZ&message=Test.