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 /artifactory/api/search/creation?from=javaEpochMillis[&to=javaEpochMillis][&repos=x[,y]]
Produces: application/json (application/vnd.org.jfrog.artifactory.search.ArtifactCreationResult+json)
Sample Output:
GET https://<JFrogPlatformURL>/artifactory/api/search/creation?from=long&to=long&repos=libs-release-local
{
"results" : [
{
"uri": "https://company.jfrog.io/artifactory/api/storage/libs-release-local/org/acme/lib/ver/lib-ver.jar",
"created": ISO8601
},{
"uri": "https://company.jfrog.io/artifactory/api/storage/libs-release-local/org/acme/lib/ver2/lib-ver2.jar",
"created": ISO8601
}
]
}