GET api/QualityDashboard/GetQualityGridStats
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of QualityGridStats| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceProviderId | integer |
None. |
|
| TotalProblems | integer |
None. |
|
| TotalSolvedProblems | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ServiceProviderId": 1,
"TotalProblems": 2,
"TotalSolvedProblems": 3
},
{
"ServiceProviderId": 1,
"TotalProblems": 2,
"TotalSolvedProblems": 3
}
]
text/html
Sample:
[{"ServiceProviderId":1,"TotalProblems":2,"TotalSolvedProblems":3},{"ServiceProviderId":1,"TotalProblems":2,"TotalSolvedProblems":3}]
application/xml, text/xml
Sample:
<ArrayOfQualityGridStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mediahuis.Models.QualityDashboard">
<QualityGridStats>
<ServiceProviderId>1</ServiceProviderId>
<TotalProblems>2</TotalProblems>
<TotalSolvedProblems>3</TotalSolvedProblems>
</QualityGridStats>
<QualityGridStats>
<ServiceProviderId>1</ServiceProviderId>
<TotalProblems>2</TotalProblems>
<TotalSolvedProblems>3</TotalSolvedProblems>
</QualityGridStats>
</ArrayOfQualityGridStats>