GET api/GLAccountDropDownList/{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.

Response Formats

application/json, text/json

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

application/xml, text/xml

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