Issue categories statistics
AuditSite.getCategoriesStatistic — this method brings in statistics by issue categories.
Use case: With the AuditSite.getCategoriesStatistic method, check how many issues related to specific categories the site has.
Request parameters | |||||
Parameter | Description | Type | Optional | Default value | Value Options |
id | A request id: the response contains the same id. | int/string | no |
| Text or number value, 1, test |
method | API method name | string | no |
| AuditSite.getCategoriesStatistic |
params | The object with parameters {...}, it lists all the following parameters and arrays [...] | no |
|
| |
reportId | Report id | int | no | 1251109 (any report ID number) |
Response parameters | |
Parameters | Description |
id | Request id |
result | Contains the answer |
category | Category name |
highCount | Number of high priority errors |
mediumCount | Numbers of medium priority errors |
lowCount | Numbers of low priority errors |
InformationCount | Number of information messages |
{
"id":1,
"method": "AuditSite.getCategoriesStatistic",
"params":{
"reportId":123456
}
}
{
"id": "1",
"result": [
{
"category": "pages_status",
"highCount": 9,
"mediumCount": 0,
"lowCount": 0,
"informationCount": 0
},
{
"category": "meta_tags",
"highCount": 93,
"mediumCount": 1023,
"lowCount": 119,
"informationCount": 4
}
Exception if a user doesn't have access to the report:
{
"id": "1",
"error": {
"code": -32101,
"message": "This project report not found in DB",
"data": {
}
}
}