Member since
11-15-2021
2
Posts
0
Kudos Received
0
Solutions
07-21-2025
01:47 AM
You can bypass SSL verification in Python using: import requests
response = requests.get('https://your-url.com', verify=False) However, disabling SSL verification is not recommended for production as it exposes you to security risks. If you're facing a CERTIFICATE_VERIFY_FAILED error, it's better to fix the underlying certificate issue. Here's a detailed guide: https://sslinsights.com/fix-certificate-verify-failed-error-in-python/
... View more
12-06-2021
10:44 AM
@mananasaly The deployment json can be obtain from this command: http://<Cm-server-host>:7180/api/<apiversion>/cm/deployment you can look at the name of the parameter. Does this something can help?
... View more