POST api/KYC/BankDetails
Request Information
URI Parameters
None.
Body Parameters
ReqEnachBankDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| BankName | string |
Required |
|
| AccountNumber | string |
Required Matching regular expression pattern: ^[a-zA-Z0-9]*$ String length: inclusive between 5 and 36 |
|
| AccountHolderName | string |
Required Matching regular expression pattern: ^[a-zA-Z0-9 -_'/().]*$ String length: inclusive between 3 and 120 |
|
| IFSC | string |
Required String length: inclusive between 8 and 12 |
|
| AccountType | string |
Required String length: inclusive between 2 and 50 |
Request Formats
application/json, text/json
Sample:
{
"BankName": "sample string 1",
"AccountNumber": "sample string 2",
"AccountHolderName": "sample string 3",
"IFSC": "sample string 4",
"AccountType": "sample string 5"
}
application/xml, text/xml
Sample:
<ReqEnachBankDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NEOWAY.Models.Request.KYC"> <AccountHolderName>sample string 3</AccountHolderName> <AccountNumber>sample string 2</AccountNumber> <AccountType>sample string 5</AccountType> <BankName>sample string 1</BankName> <IFSC>sample string 4</IFSC> </ReqEnachBankDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |