GET CustomerOrder/Dashboard
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DashboardViewModels| Name | Description | Type | Additional information |
|---|---|---|---|
| Today | integer |
None. |
|
| SevenDay | DashboardSevenDay |
None. |
|
| Month | DashboardMonth |
None. |
|
| OnTime | integer |
None. |
|
| OverTime | integer |
None. |
|
| Action | DashboardAction |
None. |
|
| Store | DashboardStore |
None. |
Response Formats
application/json, text/json
Sample:
{
"Today": 1,
"SevenDay": {
"Close": 1,
"UnClose": 2
},
"Month": {
"Close": 1,
"UnClose": 2
},
"OnTime": 2,
"OverTime": 3,
"Action": {
"Taipei": 1,
"K": 2,
"PurchaceOrder": 3
},
"Store": {
"Taipei": 1,
"K": 2
}
}
application/xml, text/xml
Sample:
<DashboardViewModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI.ViewModels.CustomerOrder">
<Action>
<K>2</K>
<PurchaceOrder>3</PurchaceOrder>
<Taipei>1</Taipei>
</Action>
<Month>
<Close>1</Close>
<UnClose>2</UnClose>
</Month>
<OnTime>2</OnTime>
<OverTime>3</OverTime>
<SevenDay>
<Close>1</Close>
<UnClose>2</UnClose>
</SevenDay>
<Store>
<K>2</K>
<Taipei>1</Taipei>
</Store>
<Today>1</Today>
</DashboardViewModels>