GET api/MGDReport/GetReceivableStaffSummary?BranchId={BranchId}&CustGroup={CustGroup}&Person={Person}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BranchId

integer

Required

CustGroup

string

Required

Person

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RecSummaryCustomer
NameDescriptionTypeAdditional information
CustomerId

string

None.

CustName

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:
[
  {
    "CustomerId": "sample string 1",
    "CustName": "sample string 2",
    "Total": 3,
    "AmountCurMonth": 4,
    "Amount_1Month": 5,
    "Amount_2Month": 6,
    "Amount_3Month": 7,
    "Amount_4Month": 8,
    "Amount_Rest": 9
  },
  {
    "CustomerId": "sample string 1",
    "CustName": "sample string 2",
    "Total": 3,
    "AmountCurMonth": 4,
    "Amount_1Month": 5,
    "Amount_2Month": 6,
    "Amount_3Month": 7,
    "Amount_4Month": 8,
    "Amount_Rest": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecSummaryCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <RecSummaryCustomer>
    <AmountCurMonth>4</AmountCurMonth>
    <Amount_1Month>5</Amount_1Month>
    <Amount_2Month>6</Amount_2Month>
    <Amount_3Month>7</Amount_3Month>
    <Amount_4Month>8</Amount_4Month>
    <Amount_Rest>9</Amount_Rest>
    <CustName>sample string 2</CustName>
    <CustomerId>sample string 1</CustomerId>
    <Total>3</Total>
  </RecSummaryCustomer>
  <RecSummaryCustomer>
    <AmountCurMonth>4</AmountCurMonth>
    <Amount_1Month>5</Amount_1Month>
    <Amount_2Month>6</Amount_2Month>
    <Amount_3Month>7</Amount_3Month>
    <Amount_4Month>8</Amount_4Month>
    <Amount_Rest>9</Amount_Rest>
    <CustName>sample string 2</CustName>
    <CustomerId>sample string 1</CustomerId>
    <Total>3</Total>
  </RecSummaryCustomer>
</ArrayOfRecSummaryCustomer>