Skip to main content
If your company uses a proxy to access external APIs, you need to specify its configuration in your requests to allow connection to our API’s Python client. Three methods are available to configure proxy usage:
  • At the request level
  • At the session level
  • At the environment level

Configuration Examples

Here is a configuration example for each method mentioned above.

TLS Certificate

The examples above have TLS certificate verification disabled, which should only be used for testing purposes.
When the verify parameter is set to False, requests will accept any TLS certificate presented by the server and ignore hostname mismatches and/or expired certificates, which makes your application vulnerable to man-in-the-middle (MitM) attacks. Setting verify to False may be useful during development or local testing. The verify parameter can also be a string, in which case it must be a path to a CA bundle to use. The default value is True.