I'm basically trying to make a REST call to the artifactory to get json response about the repositories.
My URL is something like this "http://127.0.0.1:8081/artifactory/api/storage/deploy/" where deploy is my repository.
Now i want to get the information about all the repositories whose name starts with - deploy .
How to modify the url in-order to get the info about the repositories with name starts with deploy??
Is it possible to do this, without getting all repositories name and then filtering?
Thanks.