POST api/DistributionReport/GetPersonListMonth?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DomainId |
域Id |
globally unique identifier |
None. |
AccountId |
账户Id |
globally unique identifier |
None. |
PersonId |
人员Id |
globally unique identifier |
None. |
Body Parameters
PersonListMonthVMName | Description | Type | Additional information |
---|---|---|---|
BillMonth | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "BillMonth": "sample string 1" }
application/xml, text/xml
Sample:
<PersonListMonthVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.App.WebAPI.Areas.DeliveryOrder.ViewModel"> <BillMonth>sample string 1</BillMonth> </PersonListMonthVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfReportMonthModelName | Description | Type | Additional information |
---|---|---|---|
Code | ReturnCode |
None. |
|
Message | string |
None. |
|
Data | ReportMonthModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 200, "Message": "sample string 1", "Data": { "MonthList": [ { "Day": "sample string 1", "TotalSum": 2.0, "Title": "sample string 3", "CustomerID": "sample string 4" }, { "Day": "sample string 1", "TotalSum": 2.0, "Title": "sample string 3", "CustomerID": "sample string 4" } ], "AllTotal": 1.0 } }
application/xml, text/xml
Sample:
<ResultModelOfReportMonthModelRB2X5OEn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/JT.VSFA.App.WebAPI.Areas.DeliveryOrder.ViewModel"> <d2p1:AllTotal>1</d2p1:AllTotal> <d2p1:MonthList> <d2p1:PersonListMonthModel> <d2p1:CustomerID>sample string 4</d2p1:CustomerID> <d2p1:Day>sample string 1</d2p1:Day> <d2p1:Title>sample string 3</d2p1:Title> <d2p1:TotalSum>2</d2p1:TotalSum> </d2p1:PersonListMonthModel> <d2p1:PersonListMonthModel> <d2p1:CustomerID>sample string 4</d2p1:CustomerID> <d2p1:Day>sample string 1</d2p1:Day> <d2p1:Title>sample string 3</d2p1:Title> <d2p1:TotalSum>2</d2p1:TotalSum> </d2p1:PersonListMonthModel> </d2p1:MonthList> </Data> <Message>sample string 1</Message> </ResultModelOfReportMonthModelRB2X5OEn>