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 Builds

view on GitHub

List Builds is available as both a pgutil command and an HTTP Request, and will list all existing builds within a specified project.

Command Specification (CLI)

The builds list command is used to list all builds of a project.

The --project option is always required.

Listing builds of a project requires the project name (e.g. myProject)

pgutil builds list --project=myProject 

Example output:

1.0.0
1.1.0
1.2.3

HTTP Request Specification

To list the builds of a project, simply GET to the URL with the project name and an appropriate API Key.

GET /api/sca/releases?project=«projectName»

HTTP Response Specification

A successful 200 response body will contain an array of BuildInfo.cs objects. A 403 response indicates a missing, unknown, or unauthorized API Key.