POST api/GetBankAccountVerificationDetails

Request Information

URI Parameters

None.

Body Parameters

BankAccountRequest
NameDescriptionTypeAdditional information
InnovId

integer

None.

AccountNumber

string

None.

IFSC

string

None.

Request Formats

application/json, text/json

Sample:
{
  "InnovId": 1,
  "AccountNumber": "sample string 2",
  "IFSC": "sample string 3"
}

application/xml, text/xml

Sample:
<BankAccountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <AccountNumber>sample string 2</AccountNumber>
  <IFSC>sample string 3</IFSC>
  <InnovId>1</InnovId>
</BankAccountRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BankAccountRequest'.

Response Information

Resource Description

BankAccountResponse
NameDescriptionTypeAdditional information
InnovId

string

None.

beneficiaryname

string

None.

status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "InnovId": "sample string 1",
  "beneficiaryname": "sample string 2",
  "status": "sample string 3",
  "Message": "sample string 4"
}

application/xml, text/xml

Sample:
<BankAccountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <InnovId>sample string 1</InnovId>
  <Message>sample string 4</Message>
  <beneficiaryname>sample string 2</beneficiaryname>
  <status>sample string 3</status>
</BankAccountResponse>