Hi @sconejo, could it have been the braces {{}} being mixed up between the URL and the JSON? I would use variables in both or neither, and probably choose to use a variable in both. This works for example:
https:// {{host}} /restapi/v9.1/Objects/Addresses?name= {{object-name}} &location=vsys&vsys=vsys1
{
"entry": {
"@name": "{{object-name}}",
"ip-netmask": "8.8.8.8",
"description": "My test address"
}
}
... View more