GET api/BankReport/GetCompanyList?empCode={empCode}&CompanyName={CompanyName}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
empCode | integer |
Required |
|
CompanyName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CompanyListName | Description | Type | Additional information |
---|---|---|---|
intCompanyId | integer |
None. |
|
strCompany | string |
None. |
|
decLoanAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "intCompanyId": 1, "strCompany": "sample string 2", "decLoanAmount": 3.0 }, { "intCompanyId": 1, "strCompany": "sample string 2", "decLoanAmount": 3.0 } ]
application/xml, text/xml
Sample:
<ArrayOfCompanyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models"> <CompanyList> <decLoanAmount>3</decLoanAmount> <intCompanyId>1</intCompanyId> <strCompany>sample string 2</strCompany> </CompanyList> <CompanyList> <decLoanAmount>3</decLoanAmount> <intCompanyId>1</intCompanyId> <strCompany>sample string 2</strCompany> </CompanyList> </ArrayOfCompanyList>