GET api/MGDReport/GetMYReferralCreditSummary?intEmpCode={intEmpCode}&date={date}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| intEmpCode | integer |
Required |
|
| date | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerCredits| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | string |
None. |
|
| CustomerName | string |
None. |
|
| Branch | string |
None. |
|
| decAmount | decimal number |
None. |
|
| decDueAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerId": "sample string 1",
"CustomerName": "sample string 2",
"Branch": "sample string 3",
"decAmount": 4.0,
"decDueAmount": 5.0
},
{
"CustomerId": "sample string 1",
"CustomerName": "sample string 2",
"Branch": "sample string 3",
"decAmount": 4.0,
"decDueAmount": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerCredits xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<CustomerCredits>
<Branch>sample string 3</Branch>
<CustomerId>sample string 1</CustomerId>
<CustomerName>sample string 2</CustomerName>
<decAmount>4</decAmount>
<decDueAmount>5</decDueAmount>
</CustomerCredits>
<CustomerCredits>
<Branch>sample string 3</Branch>
<CustomerId>sample string 1</CustomerId>
<CustomerName>sample string 2</CustomerName>
<decAmount>4</decAmount>
<decDueAmount>5</decDueAmount>
</CustomerCredits>
</ArrayOfCustomerCredits>