POST api/Accounting/BankList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Bank
NameDescriptionTypeAdditional information
BankId

integer

None.

BankNo

string

None.

BankName

string

None.

UnderCollectionAccountID

integer

None.

BankAccountID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BankId": 1,
    "BankNo": "sample string 2",
    "BankName": "sample string 3",
    "UnderCollectionAccountID": 4,
    "BankAccountID": 5
  },
  {
    "BankId": 1,
    "BankNo": "sample string 2",
    "BankName": "sample string 3",
    "UnderCollectionAccountID": 4,
    "BankAccountID": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfBank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layan_Cargo_API.Models">
  <Bank>
    <BankAccountID>5</BankAccountID>
    <BankId>1</BankId>
    <BankName>sample string 3</BankName>
    <BankNo>sample string 2</BankNo>
    <UnderCollectionAccountID>4</UnderCollectionAccountID>
  </Bank>
  <Bank>
    <BankAccountID>5</BankAccountID>
    <BankId>1</BankId>
    <BankName>sample string 3</BankName>
    <BankNo>sample string 2</BankNo>
    <UnderCollectionAccountID>4</UnderCollectionAccountID>
  </Bank>
</ArrayOfBank>