POST api/MFData/GetBankAccountType

Request Information

URI Parameters

None.

Body Parameters

GetBankAccountTypeInputModels
NameDescriptionTypeAdditional information
TaxStatus

string

None.

FirstPan

string

None.

Authentication

Authentication

None.

Request Formats

application/json, text/json

Sample:
{
  "TaxStatus": "sample string 1",
  "FirstPan": "sample string 2",
  "Authentication": {
    "consumerSecret": "sample string 1",
    "consumerKey": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<GetBankAccountTypeInputModels 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>
  <FirstPan>sample string 2</FirstPan>
  <TaxStatus>sample string 1</TaxStatus>
</GetBankAccountTypeInputModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetBankAccountTypeOutputModels
NameDescriptionTypeAdditional information
GetBankAccountTypeList

Collection of GetBankAccountTypeListModels

None.

ResponseCode

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "GetBankAccountTypeList": [
    {
      "BANK_ACT_TYPE": "sample string 1",
      "BANK_ACT_VALUE": "sample string 2"
    },
    {
      "BANK_ACT_TYPE": "sample string 1",
      "BANK_ACT_VALUE": "sample string 2"
    }
  ],
  "ResponseCode": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetBankAccountTypeOutputModels 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>
    <GetBankAccountTypeListModels>
      <BANK_ACT_TYPE>sample string 1</BANK_ACT_TYPE>
      <BANK_ACT_VALUE>sample string 2</BANK_ACT_VALUE>
    </GetBankAccountTypeListModels>
    <GetBankAccountTypeListModels>
      <BANK_ACT_TYPE>sample string 1</BANK_ACT_TYPE>
      <BANK_ACT_VALUE>sample string 2</BANK_ACT_VALUE>
    </GetBankAccountTypeListModels>
  </GetBankAccountTypeList>
</GetBankAccountTypeOutputModels>