I am using API Connect: v5.0.5.0 (apiconnect: v2.4.11) Developer toolkit on Windows 10. I am able to publish my loopback application to Bluemix successfully from the Developer Toolkit. However, while trying to publish/stage corresponding API Product to my Bluemix API Connect instance from APIC Developer toolkit is getting the following exception.
I would like to know where to find additional message (as indicated in the error )and any tips or suggestion to resolve the issue.
First off, if you're having problems publishing I'd suggest running
apic validate
against your product file first to see if there are any validation issues.I grabbed your product/api files from the developer.ibm.com question and did some testing. I found that your path
/containers/{container}/download/{file}
has two parameters defined asparameters: - name: container in: path required: false type: string - name: file in: path required: false type: string
By no means am I an expert in this space, but I found if I change
required: false
torequired: true
validation was successful. Give that a try.