POST Validation/ValidateBankAccount
Request Information
URI Parameters
None.
Body Parameters
BankAccountValidationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountNumber | string |
None. |
|
| BranchCode | string |
None. |
|
| AccountType | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountNumber": "sample string 1",
"BranchCode": "sample string 2",
"AccountType": 3
}
application/xml, text/xml
Sample:
<BankAccountValidationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.oneplan.co.za.Models"> <AccountNumber>sample string 1</AccountNumber> <AccountType>3</AccountType> <BranchCode>sample string 2</BranchCode> </BankAccountValidationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Entity | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Entity": "sample string 3"
}
application/xml, text/xml
Sample:
<ResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnePlan.Core"> <Entity>sample string 3</Entity> <Message>sample string 2</Message> <Success>true</Success> </ResponseOfstring>