Hello!
I'm testing the beta REST API (really nice!), I need it to retrive information about assets in raw repositories, specifically I'm interested in the md5 & sha1 hashes of the asset, however it seems that the response doesn't contain this informaiton.
Is there any way to get it with the API?
Here's the API call I use and the response:
{
"downloadUrl" : "https://<our-nexus>/repository/<repo-name>/path/to/<artifact>.tar.gz",
"path" : "path/to/<artifact>.tar.gz",
"id" : "Y2hhdGFydGlmYWN0cy1wcml2YXRlOmY4OThiMzkwM2NiOTljNTliOTAzMzlkMWRkZWNmNjYw",
"repository" : "<repo-name>",
"format" : "raw"
}
Also, is it possible to retrieve the above using the path key instead of id?
Danny