@RandomTable1 Can you share the whole error message from the interactive API documentation? I don't see the same message in the Python library. Also, you don't need to set every single parameter in the JSON body if you don't need to change it. I recommend you perform the GET uplink setting first and only include the parameters you want to change in the JSON body. For example, below is a JSON body that changes the uplink WAN2 with a static IPv4 address and gateway. Other parameters will remain the same. { "interfaces": { "wan2": { "svis": { "ipv4": { "assignmentMode": "static", "address": "1.2.3.4/24", "gateway": "1.2.3.1", "nameservers": { "addresses": [ "1.2.3.1" ] } } } } } }
... View more