GET api/bankstatementfolder

GET: api/bankstatementfolder

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BankStatementFolderViewModel
NameDescriptionTypeAdditional information
BankStatementFolderId

BankStatementFolder Id

integer

None.

FolderName

Folder Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "bankStatementFolderId": 1,
    "folderName": "sample string 2"
  },
  {
    "bankStatementFolderId": 1,
    "folderName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBankStatementFolderViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <BankStatementFolderViewModel>
    <BankStatementFolderId>1</BankStatementFolderId>
    <FolderName>sample string 2</FolderName>
  </BankStatementFolderViewModel>
  <BankStatementFolderViewModel>
    <BankStatementFolderId>1</BankStatementFolderId>
    <FolderName>sample string 2</FolderName>
  </BankStatementFolderViewModel>
</ArrayOfBankStatementFolderViewModel>