GET api/DMR2AndroidService/GetBankNameListForIFSC?username={username}&password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

password

string

Required

Body Parameters

None.

Response Information

Resource Description

BankNameList
NameDescriptionTypeAdditional information
BankList

Collection of DMR_BankNameLst

None.

status

string

None.

value

string

None.

error_msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "BankList": [
    {
      "Id": 1,
      "Bank_Name": "sample string 2",
      "IFSC": "sample string 3",
      "BankID": "sample string 4"
    },
    {
      "Id": 1,
      "Bank_Name": "sample string 2",
      "IFSC": "sample string 3",
      "BankID": "sample string 4"
    }
  ],
  "status": "sample string 1",
  "value": "sample string 2",
  "error_msg": "sample string 3"
}

application/xml, text/xml

Sample:
<BankNameList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aathifrupay.Controllers.agent.MoneyTransfer">
  <error_msg>sample string 3</error_msg>
  <status>sample string 1</status>
  <value>sample string 2</value>
  <BankList>
    <DMR_BankNameLst>
      <BankID>sample string 4</BankID>
      <Bank_Name>sample string 2</Bank_Name>
      <IFSC>sample string 3</IFSC>
      <Id>1</Id>
    </DMR_BankNameLst>
    <DMR_BankNameLst>
      <BankID>sample string 4</BankID>
      <Bank_Name>sample string 2</Bank_Name>
      <IFSC>sample string 3</IFSC>
      <Id>1</Id>
    </DMR_BankNameLst>
  </BankList>
</BankNameList>