STV (Special Tarrif & Voucher) Recharge

This command can be used to recharge STV (Special Tarrif & Voucher) operators.

Function Name: MakeMobileRecharge()
Method: POST
Resource URL: http://appone.exioms.com/api/v3_1/rechargeV3.php/MakeMobileRecharge
Method: GET
Resource URL: http://appone.exioms.com/api/v4/rechargeV3.php/MakeMobileRecharge

Parameteres

Parameters Value Description
strUsername String Unique User name
strAuthKey String Your Auth Key
intOperatorType Integer Operator Type like Mobile, DTH, Postpaid etc click here to check Operator type
intOperatorID Integer Operator ID like Airtel, Vodafone click here to check Operator name and id
intCircleID Integer Circle ID like Delhi,UP,MP click here to check circle name and id
strMobile String 10 Digit Mobile Number like 9998774555
dblAmount Double Amount like 100.00 or 125.00
strIPAddress String Your IP Address like 192.168.3.22
strMyTxID String Unique ID from your side
format Integer To Get Response In Different Format, example. For JSON (Default) = 1 , CSV = 2, XML = 3

You can't test POST based API directly in browser so you have to use following URL for testing API: https://www.hurl.it/

You can test GET based API directly in broswer also or you can use following URL for testing API: https://www.hurl.it/

URL for tesing API directly in browser:

http://appone.exioms.com/api/v4/rechargeV3.php/MakeMobileRecharge? strUsername=11111111111&strAuthKey=tYTHsdasdsd&intOperatorType=1&intOperatorID=1& strMobile=11111111111&dblAmount=0&strIPAddress=192&strMyTxID=Win7&intCircleID=1&format=1

Sample Response

 {  
  "MobileRechargeDetails": [  
   {  
    "message": "Recharge is not available for specified amount. Kindly check the tariff for the selected operator.",  
    "recharge_status": "Failed",  
    "trans_id": "NA",  
    "opr_trans_id": "NA"  
   }  
  ],  
  "success": 1  
 }  
 Recharge is not available for specified amount. Kindly check the tariff for the selected operator.,Failed,NA,NA   
 (Message,Status,System Transaction ID,Operator Transanction Id)  
 <MobileRechargeDetails>  
   <MobileRecharge>  
     <message>Recharge is not available for specified amount. Kindly check the tariff for the selected operator.</message>  
     <recharge_status>Failed</recharge_status>  
     <trans_id>NA</trans_id>  
     <opr_trans_id>NA</opr_trans_id>  
   </MobileRecharge>  
 </MobileRechargeDetails>