<?php $key="YOUR-ACCOUNT-KEY"; $senderid="YOUR-SENDER-ID"; $type="SENDER-ID-TYPE"; $response = httpPost("https://api.textng.xyz/check-sender-id/" ,array("key"=>"$key","sender_id"=>"$senderid","type"=>"$type"));function httpPost($url, $data){ $curl =curl_init ($url);curl_setopt ($curl, CURLOPT_POST, true);curl_setopt ($curl, CURLOPT_POSTFIELDS, http_build_query($data));curl_setopt ($curl, CURLOPT_RETURNTRANSFER, true);$response = curl_exec($curl); curl_close($curl);echo $response; } ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" ></script> <script>var key="YOUR-ACCOUNT-KEY" ;var sender_id="YOUR-SENDER-ID" ;var type="type" ;var url ="https://api.textng.xyz/check-sender-id/" ; $.post(url, { key: key, sender_id: sender_id, type: type },function (res) {var data = JSON.parse(res);if (data.status ==="SUCCESS" ) {// Do Success Work! } else {// Do Error Work! } }); </script>
Parameter | Example | Description |
---|---|---|
Key |
XXXXX-XXXX-XXXXX | This can be found in the Developers page of your dashboard. The key authorizes the transaction. |
sender_id |
XXXXXX | The sender ID you wish to register. |
type |
The sender ID type. Use the corresponding number to represent the sender ID type. |
{"status":"SENDER-ID-STATUS ", "registered_id":"REGISTERED-ID"}// Status Types // Active // Inactive // Registered ID // PROCESSING // REGISTERED-ID
{'status': 'ERROR ', 'response': 'ERROR Invalid Key'}
{'status': 'ERROR ', 'response': 'ERROR Incomplete Parameters'}
{'status': 'ERROR ', 'response': 'ERROR Invalid Type, Refer To Documentation'}