GET api/Dashboard/Summary
Find dashboard sumary
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of DashboardSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| TypeID | integer |
None. |
|
| CurrentQty | integer |
None. |
|
| PreviousQty | integer |
None. |
|
| Growth | integer |
None. |
|
| Movement | decimal number |
None. |
|
| ContributionAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TypeID": 1,
"CurrentQty": 2,
"PreviousQty": 3,
"Growth": 4,
"Movement": 5.1,
"ContributionAmount": 6.1
},
{
"TypeID": 1,
"CurrentQty": 2,
"PreviousQty": 3,
"Growth": 4,
"Movement": 5.1,
"ContributionAmount": 6.1
}
]
application/xml, text/xml
Sample:
<ArrayOfDashboardSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.Dashboard">
<DashboardSummary>
<ContributionAmount>6.1</ContributionAmount>
<CurrentQty>2</CurrentQty>
<Growth>4</Growth>
<Movement>5.1</Movement>
<PreviousQty>3</PreviousQty>
<TypeID>1</TypeID>
</DashboardSummary>
<DashboardSummary>
<ContributionAmount>6.1</ContributionAmount>
<CurrentQty>2</CurrentQty>
<Growth>4</Growth>
<Movement>5.1</Movement>
<PreviousQty>3</PreviousQty>
<TypeID>1</TypeID>
</DashboardSummary>
</ArrayOfDashboardSummary>