Get Item Properties

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: This REST API is called to retrieve item properties. Optionally, it can return only certain requested properties.

Since: 2.2.1

Security: Requires a privileged user (can be anonymous)

Usage: GET /api/storage/{repoKey}/{itemPath}?properties[=x[,y]]

Produces: application/json (application/vnd.org.jfrog.artifactory.storage.ItemProperties+json)

Sample Output:

GET /api/storage/libs-release-local/org/acme?properties\[=x[,y]\]
{
"uri": "http://localhost:8081/artifactory/api/storage/libs-release-local/org/acme"
"properties":{
        "p1": ["v1","v2","v3"],
        "p2": ["v4","v5","v6"]
    }
}