GET api/MGDReport/GetReceivableSummary_PersonNew?BranchId={BranchId}&CustGroup={CustGroup}&Mode={Mode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
Required |
|
| CustGroup | string |
Required |
|
| Mode | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of RecSummaryPerson| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonName | string |
None. |
|
| Total | integer |
None. |
|
| AmountCurMonth | integer |
None. |
|
| Amount_1Month | integer |
None. |
|
| Amount_2Month | integer |
None. |
|
| Amount_3Month | integer |
None. |
|
| Amount_4Month | integer |
None. |
|
| Amount_Rest | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PersonName": "sample string 1",
"Total": 2,
"AmountCurMonth": 3,
"Amount_1Month": 4,
"Amount_2Month": 5,
"Amount_3Month": 6,
"Amount_4Month": 7,
"Amount_Rest": 8
},
{
"PersonName": "sample string 1",
"Total": 2,
"AmountCurMonth": 3,
"Amount_1Month": 4,
"Amount_2Month": 5,
"Amount_3Month": 6,
"Amount_4Month": 7,
"Amount_Rest": 8
}
]
application/xml, text/xml
Sample:
<ArrayOfRecSummaryPerson xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<RecSummaryPerson>
<AmountCurMonth>3</AmountCurMonth>
<Amount_1Month>4</Amount_1Month>
<Amount_2Month>5</Amount_2Month>
<Amount_3Month>6</Amount_3Month>
<Amount_4Month>7</Amount_4Month>
<Amount_Rest>8</Amount_Rest>
<PersonName>sample string 1</PersonName>
<Total>2</Total>
</RecSummaryPerson>
<RecSummaryPerson>
<AmountCurMonth>3</AmountCurMonth>
<Amount_1Month>4</Amount_1Month>
<Amount_2Month>5</Amount_2Month>
<Amount_3Month>6</Amount_3Month>
<Amount_4Month>7</Amount_4Month>
<Amount_Rest>8</Amount_Rest>
<PersonName>sample string 1</PersonName>
<Total>2</Total>
</RecSummaryPerson>
</ArrayOfRecSummaryPerson>