GET api/Report/GetManagmentStats
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ManagmentStats| Name | Description | Type | Additional information |
|---|---|---|---|
| RegYear | integer |
None. |
|
| TestType | string |
None. |
|
| TestResult | string |
None. |
|
| Category | string |
None. |
|
| ItemCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RegYear": 1,
"TestType": "sample string 2",
"TestResult": "sample string 3",
"Category": "sample string 4",
"ItemCount": 5
},
{
"RegYear": 1,
"TestType": "sample string 2",
"TestResult": "sample string 3",
"Category": "sample string 4",
"ItemCount": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfManagmentStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GDBS.Models.CarInfo">
<ManagmentStats>
<Category>sample string 4</Category>
<ItemCount>5</ItemCount>
<RegYear>1</RegYear>
<TestResult>sample string 3</TestResult>
<TestType>sample string 2</TestType>
</ManagmentStats>
<ManagmentStats>
<Category>sample string 4</Category>
<ItemCount>5</ItemCount>
<RegYear>1</RegYear>
<TestResult>sample string 3</TestResult>
<TestType>sample string 2</TestType>
</ManagmentStats>
</ArrayOfManagmentStats>