GET api/ForexCashBankAccountsOnly/{DB}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GLAccountDropDown
NameDescriptionTypeAdditional information
GLAccountID

integer

None.

GLAccountName

string

None.

GLAccountDescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GLAccountID": 1,
    "GLAccountName": "sample string 2",
    "GLAccountDescription": "sample string 3"
  },
  {
    "GLAccountID": 1,
    "GLAccountName": "sample string 2",
    "GLAccountDescription": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGLAccountDropDown xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <GLAccountDropDown>
    <GLAccountDescription>sample string 3</GLAccountDescription>
    <GLAccountID>1</GLAccountID>
    <GLAccountName>sample string 2</GLAccountName>
  </GLAccountDropDown>
  <GLAccountDropDown>
    <GLAccountDescription>sample string 3</GLAccountDescription>
    <GLAccountID>1</GLAccountID>
    <GLAccountName>sample string 2</GLAccountName>
  </GLAccountDropDown>
</ArrayOfGLAccountDropDown>