GET api/Login?div={div}&ptype={ptype}&empid={empid}&kamids={kamids}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| div | integer |
Required |
|
| ptype | integer |
Required |
|
| empid | integer |
Required |
|
| kamids | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Receivable_model| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Account | string |
None. |
|
| TotAmt | decimal number |
None. |
|
| RecAmt | decimal number |
None. |
|
| BalAmt | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Account": "sample string 2",
"TotAmt": 3.0,
"RecAmt": 4.0,
"BalAmt": 5.0
},
{
"Id": 1,
"Account": "sample string 2",
"TotAmt": 3.0,
"RecAmt": 4.0,
"BalAmt": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfReceivable_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers">
<Receivable_model>
<Account>sample string 2</Account>
<BalAmt>5</BalAmt>
<Id>1</Id>
<RecAmt>4</RecAmt>
<TotAmt>3</TotAmt>
</Receivable_model>
<Receivable_model>
<Account>sample string 2</Account>
<BalAmt>5</BalAmt>
<Id>1</Id>
<RecAmt>4</RecAmt>
<TotAmt>3</TotAmt>
</Receivable_model>
</ArrayOfReceivable_model>