Get a summary of all the findings in the source analytic report

Return a JSON representation of the summary of all the findings in the source analytic report.

Request

GET https://{hostname}:{port}
  /build/rest2/build-lives//{id}/analyticSummaries/{name}/summaries
Table 1. URL parameters
Parameter Type Required Description
id string true
name string true The identifier to use when looking up a source analytic report.
This command takes a JSON request string or file. Use the following template for the request:
{
  "records": [{
    "count": "The count of the finding.",
    "description": "The description of the finding.",
    "name": "The name of the finding.",
    "severity": "The severity of the finding.",
    "url": "The url of the finding."
  }],
  "totalRecords": "The number of findings."
}