GET api/PersonalLoan/GetLoanBank?languageType={languageType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| languageType | CmsLanguage |
Required |
Body Parameters
None.
Response Information
Resource Description
LoanBankResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanBankList | Collection of LoanBankModel |
None. |
|
| ResponseCode | ResponseCode |
None. |
|
| AlertMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LoanBankList": [
{
"Sequence": 1,
"BankID": 2,
"BankName": "sample string 3",
"BankMobileLogo": "sample string 4",
"BankWebLogo": "sample string 5"
},
{
"Sequence": 1,
"BankID": 2,
"BankName": "sample string 3",
"BankMobileLogo": "sample string 4",
"BankWebLogo": "sample string 5"
}
],
"ResponseCode": 1,
"AlertMessage": "sample string 1"
}
text/xml
Sample:
<LoanBankResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CentaMortgageWebAPI.Models">
<AlertMessage>sample string 1</AlertMessage>
<ResponseCode>Success</ResponseCode>
<LoanBankList>
<LoanBankModel>
<BankID>2</BankID>
<BankMobileLogo>sample string 4</BankMobileLogo>
<BankName>sample string 3</BankName>
<BankWebLogo>sample string 5</BankWebLogo>
<Sequence>1</Sequence>
</LoanBankModel>
<LoanBankModel>
<BankID>2</BankID>
<BankMobileLogo>sample string 4</BankMobileLogo>
<BankName>sample string 3</BankName>
<BankWebLogo>sample string 5</BankWebLogo>
<Sequence>1</Sequence>
</LoanBankModel>
</LoanBankList>
</LoanBankResponse>