Description: Provides information on all builds.
Since: 2.2.0
Security: Requires a privileged user (can be anonymous). From version 6.6, requires read permission for the build or basic read.
Usage: GET /artifactory/api/build
Query Parameters (optional):
Field | Type | Description |
|---|---|---|
| string | Limits the response to the builds contained in the specified project. |
Produces: application/json (application/.vnd.org.jfrog.build.Builds+json)
Sample Output:
GET /artifactory/api/build?project=projectKey
{
"uri": "http://localhost:8081/artifactory/api/build"
"builds" : [
{
"uri" : "/my-build",
"lastStarted" : ISO8601 (yyyy-MM-dd'T'HH:mm:ss.SSSZ)
},
{
"uri" : "/jackrabbit",
"lastStarted" : ISO8601 (yyyy-MM-dd'T'HH:mm:ss.SSSZ)
}
]
}