MT- Get All Receiver Report

This command can be used to get receiver report.

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

Parameteres

Parameters Value Description
strUsername String Login Username
strAuthKey String Your Auth Key
strSenderID String Sender ID {optional: search field}
strRcvrID String Receiver ID {optional: search field}
strMobile Integer 10 Digit Mobile Number like 9998774555 {optional: search field}
strName String Name of receiver {optional: search field}
strSDate String Date of joining of sender. {optional: search field eg. 31-12-2016 (dd/mm/yy)}
strEDate String Date of joining of sender. {optional: search field eg. 31-12-2017 (dd/mm/yy)}
intPage integer Page number, each page has 20 records {eg. 1 or 2 or 3 and so on}
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-receiver.php/getAllReceiverList?strUsername=9987654321&strAuthKey=78uyhb84rt89hn&strMobile =&strSenderID&strRcvrID&strName&strSDate=&strEDate&intPage=1&format=1


Sample Response

 {
  "receiverDetails": [
    {
      "receiver_id": "55555",
      "name": "Nitin",
      "mobile": "7777777777",
      "ifsc_code": "IFSC54545",
      "acc_no": "16-01-2017"
    },
    {
      "receiver_id": "66666",
      "name": "Vikram",
      "mobile": "9191919191",
      "ifsc_code": "IFSC54545",
      "acc_no": "13-01-2017"
    }
  ],
  "success": 1
}  
 55555,Nitin,7777777777,[email protected],16-01-2017,66666,Vikram,9191919191,[email protected],13-01-2017
 (Senderid,First name,mobile,ifsc_code,acc_no)  
 <receiverDetails>  
   <receiver>  
     <receiver_id>55555</receiver_id>  
     <name>Nitin</name>  
     <mobile>7777777777</mobile>  
     <ifsc_code>[email protected]</ifsc_code>  
     <acc_no>16-01-2017</acc_no>  
   </receiver> 
  <receiver>  
     <receiver_id>66666</receiver_id>  
     <name>Vikram</name>  
     <mobile>9191919191</mobile>  
     <ifsc_code>[email protected]</ifsc_code>  
     <acc_no>13-01-2017</acc_no>  
   </receiver>  
 </receiverDetails>