diff --git a/pillarsdk/api.py b/pillarsdk/api.py index 81d24bb..369b2d2 100644 --- a/pillarsdk/api.py +++ b/pillarsdk/api.py @@ -91,12 +91,14 @@ class Api(object): url, method, data=body, files=files, - headers=http_headers) + headers=http_headers, + verify=True) else: http_headers['Content-Type'] = "application/json" return self.http_call(url, method, data=json.dumps(body), - headers=http_headers) + headers=http_headers, + verify=True) # Handle unauthorized token except exceptions.UnauthorizedAccess as error: