GET api/bankstatementfile/lookupbankcode?bankFolderName={bankFolderName}&fileName={fileName}
Checks if a bank code exists based on the ABA number and the account number extracted from the file name
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bankFolderName |
Bank Statement folder name |
string |
Required |
| fileName |
Statement file name |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
BankCodeLookupViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CUID |
|
string |
None. |
| AdminUserId |
|
string |
None. |
| IsBankFound |
|
boolean |
None. |
| IsSingleBankCodeFound |
|
boolean |
None. |
| IsError |
|
boolean |
None. |
| ErrorMessage |
|
string |
None. |
Response Formats
application/json, text/json
{
"cuid": "sample string 1",
"adminUserId": "sample string 2",
"isBankFound": true,
"isSingleBankCodeFound": true,
"isError": true,
"errorMessage": "sample string 6"
}
application/xml, text/xml
<BankCodeLookupViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <AdminUserId>sample string 2</AdminUserId> <CUID>sample string 1</CUID> <ErrorMessage>sample string 6</ErrorMessage> <IsBankFound>true</IsBankFound> <IsError>true</IsError> <IsSingleBankCodeFound>true</IsSingleBankCodeFound> </BankCodeLookupViewModel>