GET api/Enquiry/OtherBanksEnquiry/{Accountnumber}/{BankCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Accountnumber

string

Required

BankCode

string

Required

Body Parameters

None.

Response Information

Resource Description

OtherBankValidation
NameDescriptionTypeAdditional information
Result

OtherBankResult

None.

ResponseCode

string

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": {
    "AccountNumber": "sample string 1",
    "AccountName": "sample string 2",
    "BankVerificationNumber": "sample string 3",
    "SessionID": "sample string 4"
  },
  "ResponseCode": "sample string 1",
  "ResponseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<OtherBankValidation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tesla.FbnIntegrator.CustomObject">
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <Result>
    <AccountName>sample string 2</AccountName>
    <AccountNumber>sample string 1</AccountNumber>
    <BankVerificationNumber>sample string 3</BankVerificationNumber>
    <SessionID>sample string 4</SessionID>
  </Result>
</OtherBankValidation>