Report issues list (getReportWithoutDetails)
getReportWithoutDetails — this method returns the number of errors and information messages found by issues categories in a specific report.
Request parameters | ||
Parameters | Value | Description |
id | any number or string | Request id |
method | getReportWithoutDetails | API method name |
params | {...} | Array of parameters |
reportId | integer | Report id |
compareReportId (optional) | integer | Report id for comparison |
Response parameters | |
Parameters | Description |
id | Request id |
result | Contains the answer |
categories | Array of issue categories |
categories key | Issue category name |
errors | Array of errors and information messages within a specific category |
categories errors key | Issue name |
priority | Issue priority
|
countAll | Number of errors found or information messages |
countNew | Number of new errors found or information messages |
countFixed | Number of fixed errors or information messages |
{
"id": 1,
"method":"AuditSite.getReportWithoutDetails",
"params":{
"reportId": 2,
"compareReportId": 1
},
"jsonrpc":"2.0"
}
{
"id":"1",
"result":{
"categories":[
{
"key":"server_params",
"errors":[
{
"key":"www_status:www_no_answer",
"priority":"solved",
"countAll":1,
"countNew":0,
"countFixed":0,
"viewType":"type0"
},
{
"key":"https_status:redirect_from_http_to_https",
"priority":"solved",
"countAll":0,
"countNew":0,
"countFixed":0,
"viewType":"type0"
}
]
}
]
}
}