I am trying to use Excel to retrieve data using OData and I get an error message:
Odata: Request failed: the underlying connection was closed: could not establish trust relationship for the SSL/TLS secure channel.
If this server will only be accessed internally, you can do what @Bart_Elia suggested, add your server self-signed cert to your Active Directories Trusted list so computers in the network will trust the cert.
This helped me! REST was working on my workstation but no others. I looked and I had a certificate installed but no one else did. I believe XL Broadcast must have installed one. Thank you very much!!
Sorry for the Necro but in our case we needed to use the FQDN to get REST working with Excel as our Cert was setup with that.
Example:
https://{servername}/{EpicorAppServerName}/api/v1/BaqSvc/ABCCodes wouldnât work
https://{servername.companyname.com}/LIVE/api/v1/BaqSvc/ABCCodes worked great!