GET api/Login?ledgerid={ledgerid}&div={div}&ptype={ptype}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ledgerid | integer |
Required |
|
| div | integer |
Required |
|
| ptype | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReceivableDtl_model| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| BillNo | string |
None. |
|
| BillDate | string |
None. |
|
| Delaydays | integer |
None. |
|
| Credit | decimal number |
None. |
|
| Debit | decimal number |
None. |
|
| Closing | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"BillNo": "sample string 2",
"BillDate": "sample string 3",
"Delaydays": 4,
"Credit": 5.0,
"Debit": 6.0,
"Closing": 7.0
},
{
"Id": 1,
"BillNo": "sample string 2",
"BillDate": "sample string 3",
"Delaydays": 4,
"Credit": 5.0,
"Debit": 6.0,
"Closing": 7.0
}
]
application/xml, text/xml
Sample:
<ArrayOfReceivableDtl_model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers">
<ReceivableDtl_model>
<BillDate>sample string 3</BillDate>
<BillNo>sample string 2</BillNo>
<Closing>7</Closing>
<Credit>5</Credit>
<Debit>6</Debit>
<Delaydays>4</Delaydays>
<Id>1</Id>
</ReceivableDtl_model>
<ReceivableDtl_model>
<BillDate>sample string 3</BillDate>
<BillNo>sample string 2</BillNo>
<Closing>7</Closing>
<Credit>5</Credit>
<Debit>6</Debit>
<Delaydays>4</Delaydays>
<Id>1</Id>
</ReceivableDtl_model>
</ArrayOfReceivableDtl_model>