Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

List Issues

view on GitHub

List Issues is available as both a pgutil command and an HTTP Request, and will list all issues in a project release.

Command Specification (CLI)

The builds issues list command is used to list all existing issues in a project's build.

The --project and --build options are always required.

Listing issues requires the project (e.g. myProject) and the build version (e.g. 1.2.3)

pgutil builds issues list --project=myProject --build=1.2.3

Example output:

#1 -  because of Vulnerability (PGV-2245804), Package Status (Unlisted, Deprecated) is unknown, No license detected.

HTTP Request Specification

To list all issues of a release, simply GET to the URL with an appropriate API Key, the project name and version:

GET /api/sca/issues?project=«projectName»&version=«releaseVersion»

HTTP Response Specification

An array of BuildIssue (see BuildIssue.cs) objects will be returned on a successful 200 response. A 403 response indicates a missing, unknown, or unauthorized API Key. Note, that if there are no issues in a release, an empty array is returned.