GET api/Reports/GetDashboardGraph
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of GraphData| Name | Description | Type | Additional information |
|---|---|---|---|
| w | string |
None. |
|
| x | integer |
None. |
|
| y | integer |
None. |
|
| z | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"w": "sample string 1",
"x": 2,
"y": 3,
"z": 4
},
{
"w": "sample string 1",
"x": 2,
"y": 3,
"z": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfGraphData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TestSeriesServices.Controllers">
<GraphData>
<w>sample string 1</w>
<x>2</x>
<y>3</y>
<z>4</z>
</GraphData>
<GraphData>
<w>sample string 1</w>
<x>2</x>
<y>3</y>
<z>4</z>
</GraphData>
</ArrayOfGraphData>