Get all the source analytic summary reports

Return a JSON representation of all source analytic summary reports.

Request

GET https://{hostname}:{port}
  /build/rest2/projects/{id}/buildProcesses/{id}/buildLives/latest/analyticSummaries
Table 1. URL parameters
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
This command takes a JSON request string or file. Use the following template for the request:
{
  "records": [{
    "buildLifeId": "The id of the build life that contains 
  the source analytic summary report.",
    "count": "The count of findings in the source analytic 
  summary report.",
    "id": "The id of the source analytic summary report.",
    "location": "The REST location to get the source 
  analytic summary report.",
    "name": "The name of the source analytic summary 
  report.",
    "type": "The type of the source analytic summary 
  report.",
    "url": "The URL of the source analytic summary report."
  }],
  "totalRecords": "The number of reports."
}