Hi Guys, I've been testing with APIs adding adddresses, names, getting networks, devices, etc. I was trying to add L3 rules into an MX and this really helped since I had the RULES missing parameter, but after doing some testing I'm encountering the following issue. If I try to add one rule: [ { "comment": "Test Rule", "policy": "deny", "protocol": "any", "srcPort": "Any", "srcCidr": "10.10.37.5/32", "destPort": "Any", "destCidr": "10.10.36.0/24", "syslogEnabled": false }, { "comment": "Default rule", "policy": "allow", "protocol": "Any", "srcPort": "Any", "srcCidr": "Any", "destPort": "Any", "destCidr": "Any", "syslogEnabled": false } ] I get a 200OK but no addition was made, ever further if I enter a rule manually in the portal and I run the same script everything gets deleted and I get the a 200OK but it deletes all the existing rules but the default one. any guidance would be great. BTW I'm doing this with postman
... View more