########################################################################### # CLOUD SERVER API DOCUMENTATION # # Name: reconfigurePrivateNetwork # Language: Python # # Description: this function reconfigure a new private network ########################################################################### from urllib.request import Request, urlopen import urllib import json #ID access to API TOKEN = "{YOUR_API_TOKEN}" # e.g.: "f03c3c76cc853ee690b879909c9c6f2a" url = "https://cloudpanel-api.ionos.com/v1" def _reconfigurePrivateNetwork(id, content): #Configure the request _command = url + "/private_networks/" + id _method = 'PUT' request = Request(_command, data=content.encode(encoding='utf_8'), headers={'X-TOKEN':TOKEN, 'content-type':'application/json'}, method=_method) #Try to get the response try: response = urlopen(request) content = response.read() return (content.decode()) #Fetch error except urllib.error.URLError as e: return("Error " + str(e.code) + ":" + e.reason) #PARAMETERS id = "{YOUR_PRIVATE_NETWORK_ID}" # e.g.: "5340033E7FBBC308BC329414A0DF3C20" name = 'My private network' description = 'My private network description' network_address = '192.168.1.0' subnet_mask = '255.255.255.0' data = json.dumps({'name':name, 'description':description, 'network_address': network_address, 'subnet_mask':subnet_mask}) #Reconfigure private network print(_reconfigurePrivateNetwork(id, data))