This exchange call works using an org admin $APIKEY with the service created by a non-admin user
curl --insecure -w '%{http_code}' -s -o /dev/null -u $HZN_ORG_ID/apikey:$APIKEY -X GET -G $HZN_EXCHANGE_URL/orgs/$HZN_ORG_ID/services/service-update-multiarch_1.0.0_arm64
However, this exchange call using query parameters does not work with the same org admin $APIKEY
curl --insecure -w '%{http_code}' -s -o /dev/null -u $HZN_ORG_ID/apikey:$APIKEY -X GET -G $HZN_EXCHANGE_URL/orgs/$HZN_ORG_ID/services -d version=1.0.0 -d url=service-update-multiarch -d arch=arm64
The REST call using query parameters should also successfully return the service
This exchange call works using an org admin $APIKEY with the service created by a non-admin user
However, this exchange call using query parameters does not work with the same org admin $APIKEY
The REST call using query parameters should also successfully return the service