MT- Resend Transaction OTP

This command can be used to Resend transaction otp.

Function Name: resendTransactionOtp()
Method: GET
Resource URL: http://appone.exioms.com/api/v5/mt-transaction.php/resendTransactionOtp

Parameteres

Parameters Value Description
strUsername String Login Username
strAuthKey String Your Auth Key
strSenderID String Sender ID
strRcvrID String Receiver ID
strTransID string Transaction id return from request transaction api
format Integer To Get Response In Different Format, example. For JSON (Default) = 1 , CSV = 2, XML = 3

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/v5/mt-transaction.php/resendTransactionOtp?strUsername=999999999&strAuthKey=XXXXXX&strSenderID=55555&strRcvrID=44444&strTransID=12935&format=2


Response Parameteres

Parameters Description
status status = success; status = failed.
message Response message.

Sample Response

 {  
  "transactionOtpDetails": [  
   {  
    "status": "success", 
    "message": "Otp Sent to your mobile for confirm Transaction!",  
   }  
  ] 
 }  
 success,Otp Sent to your mobile for confirm Transaction! 
 (Status,Message)  
 <transactionOtpDetails>  
   <transaction>  
     <status>success</status>   
     <message>Otp Sent to your mobile for confirm Transaction!</message>  
   </transaction>  
 </transactionOtpDetails>