Menu
Introduction Getting started SMS Promotional - Large campaigns Transactional - Basic Transactional (Alerts) - Virtual Number Route Transactional (Alerts) - Priority Routing Transactional (OTPs & Alerts) - Special route International route to Nigeria International route to Other Countries SMS DLR SMS DLR Webhooks Voice Voice OTP Voice Broadcasts Voice DLR Units Transfer Units to Sub-Account Transfer Units to Other Account Check Units Balance Sender IDs Register Sender IDs Check Sender ID status Categories Add Customer Remove Customer Virtual Number Inbox webhook Carrier Billing Run USSD Query Run Shortcode Query Query Status Carrier Callback Tools Create Sub-Account Check DND Status Check Service Status 3rd-party integrations ZOHO
Transfer Units to Sub-Account Programatically share units amongst your sub-accounts.
POST
https://api.textng.xyz/transfer-units-sub/
💡 USAGE There is no limit to how many times you can call the API.
PHP code
<?php
  $key="YOUR-ACCOUNT-KEY";
  $receiver_key="SUB-ACCOUNT-KEY";
  $quantity="AMOUNT-OF-UNITS-TO-TRANSFER";

  $response = httpPost("https://api.textng.xyz/transfer-units-sub/",array("key"=>"$key","receiver_key"=>"$receiver_key","quantity"=>"$quantity"));

  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;
  }
?>
jQuery code
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
  var key="YOUR-ACCOUNT-KEY";
  var receiver_key="SUB-ACCOUNT-KEY";
  var quantity="AMOUNT-OF-UNITS-TO-TRANSFER";
  var url = "https://api.textng.xyz/transfer-units-sub/";

  $.post(url, { key: key, receiver_key: receiver_key, quantity: quantity }, function (res) { 
      var data = JSON.parse(res);
      if (data.status === "SUCCESS") {
          // Do Success Work!
      } else {
          // Do Error Work!
      }
  });
</script>
Parameters
Parameter Example Description
Key * XXXXX-XXXX-XXXXX This can be found in the Developers page of your dashboard. The key authorizes the transaction.
receiver_key* XXX-XXXX-XXXXX The api-key of the receiving sub-account.
quantity * The amount of units to transfer to the sub-account.
Responses
JSON - Success
{'status': 'SUCCESS', 'response': 'Transaction Successful'}
JSON Error (Invalid key)
{'status': 'ERROR', 'response': 'ERROR Invalid Key'}
JSON Error (Incomplete parameters)
{'status': 'ERROR', 'response': 'ERROR Incomplete Parameters'}
JSON Error (Invalid quantity)
// If quantity is not a digit
{'status': 'ERROR', 'response': 'ERROR Invalid Quantity'}
JSON Error (Invalid receiver)
{'status': 'ERROR', 'response': 'ERROR Invalid Receiver Key'}
JSON Error (Insufficient wallet units)
{'status': 'ERROR', 'response': 'ERROR Insufficient Wallet Balance'}
Other Errors
{'status': 'ERROR', 'response': 'ERROR Could not complete transaction'}