Hi @Shailendr , Yes you can define the proxies in the script and use it when you are using the get request for api.anaplan.com To get the proxies use the below code. import urllib.request proxies = urllib.request.getproxies() print(proxies) define a new function as shown below : def get_proxies(): return { 'http': 'http://domainame/username:password@proxyIP:port', 'https': domainame/username:password@proxyIP:port', 'ftp': 'ftp://domainame/username:password@proxyIP:port' } Note : If the password contains special characters then you have to percent encode it. Now while hitting a get request or Put request or post request use the below code to call the proxies. url = 'https://auth.anaplan.com/token/authenticate' request = request.post(url,headers=headers,data= data,proxies=get_proxies()) Note : The above code is not intended please make sure you intendent it properly.
... View more