POST api/MFData/GetPurchaseBankList
Request Information
URI Parameters
None.
Body Parameters
GetPurchaseBankInputModels| Name | Description | Type | Additional information |
|---|---|---|---|
| P_strfolionumber | string |
None. |
|
| Token | string |
None. |
|
| Authentication | Authentication |
None. |
Request Formats
application/json, text/json
Sample:
{
"P_strfolionumber": "sample string 1",
"Token": "sample string 2",
"Authentication": {
"consumerSecret": "sample string 1",
"consumerKey": "sample string 2"
}
}
application/xml, text/xml
Sample:
<GetPurchaseBankInputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models">
<Authentication>
<consumerKey>sample string 2</consumerKey>
<consumerSecret>sample string 1</consumerSecret>
</Authentication>
<P_strfolionumber>sample string 1</P_strfolionumber>
<Token>sample string 2</Token>
</GetPurchaseBankInputModels>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPurchaseBankOutputModel| Name | Description | Type | Additional information |
|---|---|---|---|
| GetBankAccountTypeList | Collection of GetPurchaseBankListModels |
None. |
|
| ResponseCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"GetBankAccountTypeList": [
{
"BANK_CODE": "sample string 1",
"BANK_NAME": "sample string 2",
"STATUS": "sample string 3",
"LIQUID_ALLOWED": "sample string 4",
"ISIP_ALLOWED": "sample string 5",
"CORP_STATUS": "sample string 6"
},
{
"BANK_CODE": "sample string 1",
"BANK_NAME": "sample string 2",
"STATUS": "sample string 3",
"LIQUID_ALLOWED": "sample string 4",
"ISIP_ALLOWED": "sample string 5",
"CORP_STATUS": "sample string 6"
}
],
"ResponseCode": "sample string 1",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<GetPurchaseBankOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models">
<Message>sample string 2</Message>
<ResponseCode>sample string 1</ResponseCode>
<GetBankAccountTypeList>
<GetPurchaseBankListModels>
<BANK_CODE>sample string 1</BANK_CODE>
<BANK_NAME>sample string 2</BANK_NAME>
<CORP_STATUS>sample string 6</CORP_STATUS>
<ISIP_ALLOWED>sample string 5</ISIP_ALLOWED>
<LIQUID_ALLOWED>sample string 4</LIQUID_ALLOWED>
<STATUS>sample string 3</STATUS>
</GetPurchaseBankListModels>
<GetPurchaseBankListModels>
<BANK_CODE>sample string 1</BANK_CODE>
<BANK_NAME>sample string 2</BANK_NAME>
<CORP_STATUS>sample string 6</CORP_STATUS>
<ISIP_ALLOWED>sample string 5</ISIP_ALLOWED>
<LIQUID_ALLOWED>sample string 4</LIQUID_ALLOWED>
<STATUS>sample string 3</STATUS>
</GetPurchaseBankListModels>
</GetBankAccountTypeList>
</GetPurchaseBankOutputModel>