POST api/Transfer/GetBankNameByAccountNumber

Request Information

URI Parameters

None.

Body Parameters

CustAccountNumberParam
NameDescriptionTypeAdditional information
AccountNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountNumber": "sample string 1"
}

application/xml, text/xml

Sample:
<CustAccountNumberParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.RequestObjs">
  <AccountNumber>sample string 1</AccountNumber>
</CustAccountNumberParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BankListdata
NameDescriptionTypeAdditional information
Responsecode

string

None.

ResponseDescription

string

None.

GetInstitutionList

Collection of Response

None.

Response Formats

application/json, text/json

Sample:
{
  "Responsecode": "sample string 1",
  "ResponseDescription": "sample string 2",
  "GetInstitutionList": [
    {
      "institutioncode": "sample string 1",
      "institutionname": "sample string 2"
    },
    {
      "institutioncode": "sample string 1",
      "institutionname": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<BankListdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CorporateAPI.ResponseObjs">
  <GetInstitutionList>
    <Response>
      <institutioncode>sample string 1</institutioncode>
      <institutionname>sample string 2</institutionname>
    </Response>
    <Response>
      <institutioncode>sample string 1</institutioncode>
      <institutionname>sample string 2</institutionname>
    </Response>
  </GetInstitutionList>
  <ResponseDescription>sample string 2</ResponseDescription>
  <Responsecode>sample string 1</Responsecode>
</BankListdata>