Artifacts Created in Date Range

JFrog REST APIs

Products
JFrog Xray
Content Type
REST API
ft:sourceType
Paligo

Description: Get All Artifacts Created in Date Range

If 'to' is not specified use now(). Can limit search to specific repositories (local or remote-cache).

Since: 2.2.0

Security: Requires a privileged non-anonymous user.

Usage: GET /api/search/creation?from=javaEpochMillis[&to=javaEpochMillis][&repos=x[,y]]

Produces: application/json (application/vnd.org.jfrog.artifactory.search.ArtifactCreationResult+json)

Sample Output:

GET /api/search/creation?from=long&to=long&repos=libs-release-local
{
"results" : [
    {
        "uri": "http://localhost:8081/artifactory/api/storage/libs-release-local/org/acme/lib/ver/lib-ver.jar",
        "created": ISO8601
    },{
        "uri": "http://localhost:8081/artifactory/api/storage/libs-release-local/org/acme/lib/ver2/lib-ver2.jar",
        "created": ISO8601
    }
]
}