GET api/PR_GetEmployeeDataUsingIntID/{DB}?ReportDate={ReportDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

ReportDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GLAccountSaleRpt
NameDescriptionTypeAdditional information
GLAccount

string

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GLAccount": "sample string 1",
    "Amount": 2.0
  },
  {
    "GLAccount": "sample string 1",
    "Amount": 2.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfGLAccountSaleRpt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <GLAccountSaleRpt>
    <Amount>2</Amount>
    <GLAccount>sample string 1</GLAccount>
  </GLAccountSaleRpt>
  <GLAccountSaleRpt>
    <Amount>2</Amount>
    <GLAccount>sample string 1</GLAccount>
  </GLAccountSaleRpt>
</ArrayOfGLAccountSaleRpt>