Builds for Dependency

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Find all the builds an artifact is a dependency of (where the artifact is included in the build-info dependencies)

Notes: Requires Artifactory Pro

Since: 2.3.4

Security: Requires a privileged user (can be anonymous)

Usage: GET /api/search/dependency?sha1=sha1Checksum

Produces: application/json

(application/vnd.org.jfrog.artifactory.search.DependencyBuilds+json)

Sample Output:

GET /api/search/dependency?sha1=451a3c5f8cfa44c5d805379e760b5c512c7d250b
{
"results" : [
    {
        "uri": "http://localhost:8081/artifactory/api/build/my-build/50"
    },{
        "uri": "http://localhost:8081/artifactory/api/build/my-build/51"
    }
]
}