GET api/BankAccount/GetForListByAccountID?accountID={accountID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BankAccountForList
NameDescriptionTypeAdditional information
BankAccountID

integer

None.

AccountName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BankAccountID": 1,
    "AccountName": "sample string 2"
  },
  {
    "BankAccountID": 1,
    "AccountName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBankAccountForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.BankAccount">
  <BankAccountForList>
    <AccountName>sample string 2</AccountName>
    <BankAccountID>1</BankAccountID>
  </BankAccountForList>
  <BankAccountForList>
    <AccountName>sample string 2</AccountName>
    <BankAccountID>1</BankAccountID>
  </BankAccountForList>
</ArrayOfBankAccountForList>