In Artifactory, I have an artifact "consumersvc" and there are multiple version: 1.0.0, 1.1.0, 1.2.0 etc
Now, For each of these artifact versions, there are some properties attached to the build artifact of that artifact-x.x.x for ex: svnURL, svnChangeSetNumber etc
Is there any way I can get this info using Rest API etc.
I tried the following but it lists all the artifacts which has this property=value but I'm looking the opposite of that.
http://myartifactorysrvr.my.company.com:8080/artifactory/api/search/prop?svnURL=*
Then, it outputs info in JSON output and shows all artifacts in Artifactory where this property is set to any value. What I am looking for is, how to get all properties (svnURL and svnChangeSetNumber) for any artifact in Artifactory?