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/projects/{id}/buildProcesses/{id}/buildLives/latest/analyticSummaries/{name}/summaries
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | true | The identifier to use when looking up a project. This can be the name or ID of the project |
| id | string | true | The identifier to use when looking up a build process. This can be the name or ID of the process |
| 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."
}