POST api/bankstatementfile/upload?BankFolderId={BankFolderId}&BatchId={BatchId}
Uploads bank statement files
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BankFolderId |
|
integer |
None. |
| BatchId |
|
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of StatementUploadResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BatchId |
|
string |
None. |
| Status |
|
ProcessStatusEnum |
None. |
| Message |
|
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"batchId": "sample string 1",
"status": 2,
"message": "sample string 2"
},
{
"batchId": "sample string 1",
"status": 2,
"message": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStatementUploadResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.BankStatements">
<StatementUploadResultViewModel>
<BatchId>sample string 1</BatchId>
<Message>sample string 2</Message>
<Status>Queued</Status>
</StatementUploadResultViewModel>
<StatementUploadResultViewModel>
<BatchId>sample string 1</BatchId>
<Message>sample string 2</Message>
<Status>Queued</Status>
</StatementUploadResultViewModel>
</ArrayOfStatementUploadResultViewModel>