POST REST/Accounts/Verify
Request Information
URI Parameters
None.
Body Parameters
AccountBaseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountNumber | string |
None. |
|
| BankCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountNumber": "sample string 1",
"BankCode": "sample string 2"
}
application/xml, text/xml
Sample:
<AccountBaseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Models"> <AccountNumber>sample string 1</AccountNumber> <BankCode>sample string 2</BankCode> </AccountBaseModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AccountVerificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountName | string |
None. |
|
| AccountNumber | string |
None. |
|
| BankCode | string |
None. |
|
| BVN | string |
None. |
|
| Status | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"AccountName": "sample string 1",
"AccountNumber": "sample string 2",
"BankCode": "sample string 3",
"BVN": "sample string 4",
"Status": "sample string 5",
"Message": "sample string 6"
}
application/xml, text/xml
Sample:
<AccountVerificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bank3D.IBridge.Areas.REST"> <Message>sample string 6</Message> <Status>sample string 5</Status> <AccountName>sample string 1</AccountName> <AccountNumber>sample string 2</AccountNumber> <BVN>sample string 4</BVN> <BankCode>sample string 3</BankCode> </AccountVerificationResponse>