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 | ||
Parameters | Value | Description |
id | any number or string | A request id: the response contains the same id. Enter any number (number) or text (string) value |
method | getCategoriesStatistic | API method name |
params | {...} / [...] | The object with parameters {...}, it lists all the following parameters and arrays [...] |
reportId | integer | Report id |
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": {
}
}
}