Get information about all of the findings in the source analytic report
Return a JSON representation of all the findings in the source analytic report.
Request
GET https://{hostname}:{port}
/build/rest2/build-lives//{id}/analytics/{id}/findings
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | true | |
| id | 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": [{
"description": "The description of the finding.",
"file": "The file containing the finding.",
"id": "The id of the finding.",
"line": "The line number of the finding in the file.",
"name": "The name of the finding.",
"severity": "The severity of the finding.",
"status": "The status of the finding.",
"url": "The url of the finding."
}],
"totalRecords": "The number of findings."
}
