Resolution

ARTIFACTORY: Why the APIs to get Release bundles can come back empty

AuthorFullName__c
Andrew Roellig
articleNumber
000006160
ft:sourceType
Salesforce
FirstPublishedDate
2024-07-31T11:30:31Z
lastModifiedDate
2024-07-31
VersionNumber
1
To get around this you can use the v2 APIs or use AQL queries against the release bundle repository:
curl -u <username> -X POST "<jfrogurl>/artifactory/api/search/aql" -H "Content-Type: text/plain" -d '
items.find({
    "$or": [
    {"repo": "<release bundle repository>"},
    {"repo": "<release bundle repository>"}
  ]
}).include("name")'