POST api/OrderNewManage/GetOrderCountList?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
OrderListVM| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
|
| Status | string |
None. |
|
| AccountId | string |
None. |
|
| DeliveryAccountId | string |
None. |
|
| KeyWord | string |
None. |
|
| PersonName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StartDate": "sample string 1",
"EndDate": "sample string 2",
"Status": "sample string 3",
"AccountId": "sample string 4",
"DeliveryAccountId": "sample string 5",
"KeyWord": "sample string 6",
"PersonName": "sample string 7"
}
application/xml, text/xml
Sample:
<OrderListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.App.WebAPI.Areas.OrderNewManage.ViewModel"> <AccountId>sample string 4</AccountId> <DeliveryAccountId>sample string 5</DeliveryAccountId> <EndDate>sample string 2</EndDate> <KeyWord>sample string 6</KeyWord> <PersonName>sample string 7</PersonName> <StartDate>sample string 1</StartDate> <Status>sample string 3</Status> </OrderListVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfListOfOrderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | ReturnCode |
None. |
|
| Message | string |
None. |
|
| Data | Collection of OrderModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 200,
"Message": "sample string 1",
"Data": [
{
"Day": "sample string 1",
"Date": "sample string 2",
"TotalNum": 3
},
{
"Day": "sample string 1",
"Date": "sample string 2",
"TotalNum": 3
}
]
}
application/xml, text/xml
Sample:
<ResultModelOfArrayOfOrderModeltMslP3uh 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.OrderNewManage.ViewModel">
<d2p1:OrderModel>
<d2p1:Date>sample string 2</d2p1:Date>
<d2p1:Day>sample string 1</d2p1:Day>
<d2p1:TotalNum>3</d2p1:TotalNum>
</d2p1:OrderModel>
<d2p1:OrderModel>
<d2p1:Date>sample string 2</d2p1:Date>
<d2p1:Day>sample string 1</d2p1:Day>
<d2p1:TotalNum>3</d2p1:TotalNum>
</d2p1:OrderModel>
</Data>
<Message>sample string 1</Message>
</ResultModelOfArrayOfOrderModeltMslP3uh>