I have been attempting to update a list of port forwarding rules using Postman Runner. It runs through the iterations as expected, but when I check the configuration, it only shows the last rule from my .csv file. The body code I am using is: { "rules": [ { "lanIp": "{{lanIp}}", "name": "{{name}}", "allowedIps": ["{{allowedIps}}"], "publicPort": "{{publicPort}}", "localPort": "{{localPort}}", "uplink": "{{uplink}}", "protocol": "{{protocol}}" } ] } What am I doing wrong? TIA, Brad Walker
... View more