I haven't added a rule via API before but I have two observations. 1. The documentation says "Update L3 Firewall Rules" so I wonder if you are only allowed to update and not add. It doesn't clarify 2. The rules array appears to be required and make sure to pay attention that it uses a bracket instead of the curly brace so I assume the body of the postman request would be formatted similar to this {
"rules": [
{
"comment": "allow https - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "443",
"destCidr": "Any",
"syslogEnabled": false
... View more